From: Nick Bowler Date: Mon, 19 Sep 2011 22:43:34 +0000 (-0400) Subject: Handle gl_LIBOBJS/gl_LTLIBOBJS correctly. X-Git-Tag: v1~107 X-Git-Url: https://git.draconx.ca/gitweb/cdecl99.git/commitdiff_plain/10d9cf84b7e2ea5b5086d064e09d6504e12ecbd7 Handle gl_LIBOBJS/gl_LTLIBOBJS correctly. These AC_SUBSTed variables reference objects whose sources are located in lib, thus they need to be rewritten like other AC_SUBSTed variables. These objects also need the header dependencies like other objects. --- diff --git a/fix-gnulib.pl b/fix-gnulib.pl index b93cf22..1f50d49 100755 --- a/fix-gnulib.pl +++ b/fix-gnulib.pl @@ -145,7 +145,10 @@ EOF s:\$\(builddir\):\$\(top_builddir\)/lib:g; } continue { print }; -print "\$(libgnu_la_OBJECTS): \$(gnulib_headers)\n"; +print <<'EOF'; +gnulib_lt_objects = $(libgnu_la_OBJECTS) $(gl_LTLIBOBJS) +$(gnulib_lt_objects): $(gnulib_headers) +EOF # Some filenames are AC_SUBSTed by the Gnulib macros, and thus we need to # prepend lib/ if and only if they're not empty. Unfortunately, make is not @@ -159,6 +162,16 @@ if (defined $m4output) { print M4OUT "dnl This file was generated by fix-gnulib.pl\n"; print M4OUT "AC_DEFUN([$m4macro], [dnl\n"; + print M4OUT <<'EOF'; +m4_foreach([gl_objvar], [[gl_LIBOBJS], [gl_LTLIBOBJS]], [dnl +set x $gl_objvar; shift +gl_objvar= +while test ${#} -gt 0; do + gl_objvar="$gl_objvar lib/${1}"; shift +done +]) +EOF + foreach (@vars) { print M4OUT "$_=\${$_:+lib/\$$_}\n"; }