]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* Makefile.am (ltconfig, ltmain.sh): some broken makes don't like
authorAlexandre Oliva <oliva@dcc.unicamp.br>
Wed, 27 Jan 1999 06:23:47 +0000 (06:23 +0000)
committerAlexandre Oliva <aoliva@redhat.com>
Wed, 27 Jan 1999 06:23:47 +0000 (06:23 +0000)
macros in targets; replace $(srcdir) with @srcdir@
* configure.in (ACINCLUDE_M4_LIST): same problem; expand $srcdir

ChangeLog
Makefile.am
configure.in

index a29360a4277792b750e07f8a604f6401f0cd32a6..59d48497621652066e32967841f5d3fc989f4ffb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 1999-01-27  Alexandre Oliva  <oliva@dcc.unicamp.br>
 
+       * Makefile.am (ltconfig, ltmain.sh): some broken makes don't like
+       macros in targets; replace $(srcdir) with @srcdir@
+       * configure.in (ACINCLUDE_M4_LIST): same problem; expand $srcdir
+
        * libltdl/Makefile.am (@TOINST@/libltdl.la): if installation is
        enabled, create to-be-installed libltdl.la within @TOINST@
        directory
index 4f510bf83eb96c51e3916295ec83f3f3bfb6bbe1..1479f98e302113d4ad62abb022f874a1b3e6619a 100644 (file)
@@ -58,7 +58,7 @@ update-timestamps:
 
 # Do line number substitution, as well as PACKAGE, VERSION and TIMESTAMP.
 # Line numbering transliterated from a section in autoconf (Autoconf 2.12).
-$(srcdir)/ltconfig: $(srcdir)/ltconfig.in $(top_srcdir)/configure.in $(TSDEPS)
+@srcdir@/ltconfig: $(srcdir)/ltconfig.in $(top_srcdir)/configure.in $(TSDEPS)
        rm -f ltconfig.T
        date=`$(SHELL) $(srcdir)/mkstamp < $(srcdir)/ChangeLog` && \
        $(AWK) '/@LINENO@/ { printf "%d:", NR } { print }' $(srcdir)/ltconfig.in | \
@@ -70,7 +70,7 @@ $(srcdir)/ltconfig: $(srcdir)/ltconfig.in $(top_srcdir)/configure.in $(TSDEPS)
        mv -f ltconfig.T $@ || \
        (rm -f $@ && cp ltconfig.T $@ && rm -f ltconfig.T)
 
-$(srcdir)/ltmain.sh: $(srcdir)/ltmain.in $(top_srcdir)/configure.in $(TSDEPS)
+@srcdir@/ltmain.sh: $(srcdir)/ltmain.in $(top_srcdir)/configure.in $(TSDEPS)
        rm -f ltmain.shT
        date=`$(SHELL) $(srcdir)/mkstamp < $(srcdir)/ChangeLog` && \
        sed -e 's/@''PACKAGE@/@PACKAGE@/' -e 's/@''VERSION@/@VERSION@/' \
index ad29d8c06f9987453ed5e58fcd5b347011977510..e88cd5948c2a2d52c4d08146f8782181dadf201d 100644 (file)
@@ -44,10 +44,10 @@ dnl included in the distribution
 CONF_SUBDIRS="libltdl demo mdemo cdemo" # depdemo
 AC_SUBST(CONF_SUBDIRS)
 
-ACINCLUDE_M4_LIST="\$(srcdir)/acinclude.m4 "
+ACINCLUDE_M4_LIST="${srcdir}/acinclude.m4 "
 DIST_MAKEFILE_LIST=
 for dir in $CONF_SUBDIRS; do
-  ACINCLUDE_M4_LIST="$ACINCLUDE_M4_LIST\$(srcdir)/$dir/acinclude.m4 "
+  ACINCLUDE_M4_LIST="$ACINCLUDE_M4_LIST${srcdir}/$dir/acinclude.m4 "
   DIST_MAKEFILE_LIST="$DIST_MAKEFILE_LIST$dir/Makefile "
 done
 AC_SUBST(ACINCLUDE_M4_LIST)