0001-fix-parallel-build.patch 781 B

12345678910111213141516171819202122
  1. Use correct dependency in Makefile.am
  2. Depending on a libtool library should be done using the .la name, not on
  3. the object file.
  4. Fixes hard-to-reproduce parallel build failures, like so:
  5. http://autobuild.buildroot.org/results/aed/aed3690689b60844e3278626da3c3eb75f2a2586/build-end.log
  6. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
  7. diff -durN sqlite-3081000.orig/Makefile.am sqlite-3081000/Makefile.am
  8. --- sqlite-3081000.orig/Makefile.am 2015-05-07 16:59:22.000000000 +0200
  9. +++ sqlite-3081000/Makefile.am 2015-05-20 23:30:03.878784079 +0200
  10. @@ -7,7 +7,7 @@
  11. bin_PROGRAMS = sqlite3
  12. sqlite3_SOURCES = shell.c sqlite3.h
  13. -sqlite3_LDADD = sqlite3.$(OBJEXT) @READLINE_LIBS@
  14. +sqlite3_LDADD = libsqlite3.la @READLINE_LIBS@
  15. include_HEADERS = sqlite3.h sqlite3ext.h