From: Remi Collet Date: September 18 2010 3:48pm Subject: Broken build on fedora 14 List-Archive: http://lists.mysql.com/gui-tools/2202 Message-Id: <4C94DF53.4020607@FamilleCollet.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------020306080601030209010003" --------------020306080601030209010003 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Hi, Build is broken with latest build tool provided by fedora 14 (not yet released) $ make -j16 ... Making all in modules make[2]: Entering directory `/builddir/build/BUILD/mysql-workbench-gpl-5.2.27/modules' Making all in db make[3]: Entering directory `/builddir/build/BUILD/mysql-workbench-gpl-5.2.27/modules/db' make[3]: Leaving directory `/builddir/build/BUILD/mysql-workbench-gpl-5.2.27/modules/db' Makefile:580: *** missing separator. Stop. make[2]: Leaving directory `/builddir/build/BUILD/mysql-workbench-gpl-5.2.27/modules' make[2]: *** [all-recursive] Error 1 make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/builddir/build/BUILD/mysql-workbench-gpl-5.2.27' make: *** [all] Error 2 In modules/db/Makefile, line 580 start with "dnl". I think, this should be # The attached trivial patch fix this issue. Regards Remi. --------------020306080601030209010003 Content-Type: text/x-patch; name="mysql-workbench-5.2.27-dnl.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="mysql-workbench-5.2.27-dnl.patch" diff -up mysql-workbench-gpl-5.2.27/modules/db/Makefile.am.dnl mysql-workbench-gpl-5.2.27/modules/db/Makefile.am --- mysql-workbench-gpl-5.2.27/modules/db/Makefile.am.dnl 2010-09-18 17:06:10.582256133 +0200 +++ mysql-workbench-gpl-5.2.27/modules/db/Makefile.am 2010-09-18 17:07:37.070380972 +0200 @@ -11,4 +11,4 @@ INCLUDES=-I$(top_srcdir)/generated -I$(t dbutils_grt_la_SOURCES=src/dbutils.cpp dbutils_grt_la_LDFLAGS=-module -dnl dbutils_grt_la_LIBADD=$(top_srcdir)/backend/grtdb/libgrtdbbe.la $(top_srcdir)/backend/grt/libgrtbe.la +#dbutils_grt_la_LIBADD=$(top_srcdir)/backend/grtdb/libgrtdbbe.la $(top_srcdir)/backend/grt/libgrtbe.la diff -up mysql-workbench-gpl-5.2.27/modules/db/Makefile.in.dnl mysql-workbench-gpl-5.2.27/modules/db/Makefile.in --- mysql-workbench-gpl-5.2.27/modules/db/Makefile.in.dnl 2010-09-18 17:06:15.708005899 +0200 +++ mysql-workbench-gpl-5.2.27/modules/db/Makefile.in 2010-09-18 17:07:07.737130492 +0200 @@ -523,7 +523,7 @@ uninstall-am: uninstall-pkglibLTLIBRARIE mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags uninstall uninstall-am uninstall-pkglibLTLIBRARIES -dnl dbutils_grt_la_LIBADD=$(top_srcdir)/backend/grtdb/libgrtdbbe.la $(top_srcdir)/backend/grt/libgrtbe.la +#dbutils_grt_la_LIBADD=$(top_srcdir)/backend/grtdb/libgrtdbbe.la $(top_srcdir)/backend/grt/libgrtbe.la # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: --------------020306080601030209010003--