X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=gnulib-tool;h=2d992bc9eb2ace4616d76372502595f33e0eb721;hb=76bd5cd5304484617bd8b15bfc8a59b0264482b8;hp=a18fdc54abe338cb20dc04206fd64fc1ccbf742f;hpb=cf314fdac7227c80679c318cc13790410420bedf;p=gnulib.git diff --git a/gnulib-tool b/gnulib-tool index a18fdc54a..2d992bc9e 100755 --- a/gnulib-tool +++ b/gnulib-tool @@ -22,7 +22,7 @@ progname=$0 package=gnulib -cvsdatestamp='$Date: 2004-10-15 16:54:14 $' +cvsdatestamp='$Date: 2004-10-17 17:50:25 $' last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'` version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'` @@ -455,9 +455,9 @@ func_emit_lib_Makefile_am () func_verify_module if test -n "$module"; then { - func_get_automake_snippet "$module" | sed -e "s,lib_SOURCES,$libname"'_a_SOURCES,g' -e "s,lib_OBJECTS,$libname"'_a_OBJECTS,g' + func_get_automake_snippet "$module" | sed -e "s,lib_SOURCES,${libname}_${libext}_SOURCES,g" -e "s,lib_OBJECTS,${libname}_${libext}_OBJECTS,g" if test "$module" = 'alloca'; then - echo "${libname}_${libext}_LIBADD += @{perhapsLT}ALLOCA@" + echo "${libname}_${libext}_LIBADD += @${perhapsLT}ALLOCA@" fi } > amsnippet.tmp # Skip the contents if its entirely empty. @@ -471,6 +471,8 @@ func_emit_lib_Makefile_am () rm -f amsnippet.tmp fi done + echo + echo "# Makefile.am ends here" } # func_import modules @@ -547,10 +549,7 @@ func_import () if test -z "$dry_run"; then func_emit_lib_Makefile_am > $destdir/$sourcebase/Makefile.am else - echo "# $destdir/$sourcebase/Makefile.am" func_emit_lib_Makefile_am - echo - echo "# Makefile.am ends here" fi # Create gnulib.m4. @@ -589,6 +588,12 @@ func_import () func_verify_module if test -n "$module"; then func_get_autoconf_snippet "$module" | sed -e '/^$/d;' -e 's/^/ /' -e 's/AM_GNU_GETTEXT(\[external\])/dnl you must add AM_GNU_GETTEXT([external]) or similar to configure.ac./' + if test "$module" = 'alloca' && test -n "$libtool"; then + echo 'changequote(,)dnl' + echo 'LTALLOCA=`echo "$ALLOCA" | sed '"'"'s/\.[^.]* /.lo /g;s/\.[^.]*$/.lo/'"'"'`' + echo 'changequote([, ])dnl' + echo 'AC_SUBST(LTALLOCA)' + fi fi done echo "])"