From: Thomas Tanner Date: Fri, 15 Jan 1999 09:21:04 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: automake_1-4~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1b42249d43c5627b1e6c5bf1d4ea600eb064d872;p=thirdparty%2Flibtool.git *** empty log message *** --- diff --git a/ChangeLog b/ChangeLog index 6e4f65c64..8a9815c9e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +1999-01-15 Thomas Tanner + + * Makefile.am (@DIST_MAKEFILE_LIST@): added a second '$' + before abs_scrdir, removed ltconfig and ltmain.sh from + EXTRA_DIST (automake distributes them by default) + 1999-01-14 Thomas Tanner * autogen: moved faking of the libtool scripts before diff --git a/Makefile.am b/Makefile.am index d051dd5ba..b7bf1d4c1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -14,7 +14,7 @@ CPPLAGS = @CPPFLAGS@ aclocal_macros = libtool.m4 EXTRA_DIST = $(aclocal_macros) libtoolize.in ltconfig.in ltmain.in \ - libtool.spec ltconfig ltmain.sh + libtool.spec CLEANFILES = libtool libtoolize ltconfig.T ltmain.shT # These are required by libtoolize. @@ -80,7 +80,7 @@ configure-subdirs distdir: $(DIST_MAKEFILE_LIST) dir=`echo $@ | sed 's,^[^/]*$$,.,;s,/[^/]*$$,,'`; \ test -d $$dir || mkdir $$dir || exit 1; \ abs_srcdir=`cd $(top_srcdir) >/dev/null && pwd`; \ - (cd $$dir && $abs_srcdir/$$dir/configure) || exit 1 + (cd $$dir && $$abs_srcdir/$$dir/configure) || exit 1 ################################################################ ##