From: Akim Demaille Date: Wed, 9 Aug 2000 06:19:36 +0000 (+0000) Subject: * Makefile.am: substitute @bindir@ in shell scripts, needed by X-Git-Tag: autoconf-2.50~662 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7d811d6ff1894e44d3f158bc39a0a2af02c11f1f;p=thirdparty%2Fautoconf.git * Makefile.am: substitute @bindir@ in shell scripts, needed by autoheader --- diff --git a/ChangeLog b/ChangeLog index 885d01d5d..a6ed61701 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-08-0 Pavel Roskin + + * Makefile.am: substitute @bindir@ in shell scripts, needed by + autoheader + 2000-08-07 Akim Demaille * acfunctions.m4 (_AC_LIBOBJ_ALLOCA, AC_REPLACE_FUNCS): Simplify diff --git a/Makefile.am b/Makefile.am index 6062a2930..90e0da827 100644 --- a/Makefile.am +++ b/Makefile.am @@ -81,6 +81,7 @@ editsh = sed \ -e 's,@SHELL\@,$(SHELL),g' \ -e 's,@VERSION\@,$(VERSION),g' \ -e 's,@PACKAGE\@,$(PACKAGE),g' \ + -e 's,@bindir\@,$(bindir),g' \ -e 's,@autoconf-name\@,'`echo autoconf | sed '$(transform)'`',g' \ -e 's,@autoheader-name\@,'`echo autoheader | sed '$(transform)'`',g' diff --git a/Makefile.in b/Makefile.in index 8e05f21e6..6e6c58467 100644 --- a/Makefile.in +++ b/Makefile.in @@ -100,7 +100,7 @@ MAINTAINERCLEANFILES = INSTALL.txt # The scripts. -editsh = sed -e 's,@datadir\@,$(pkgdatadir),g' -e 's,@M4\@,$(M4),g' -e 's,@AWK\@,$(AWK),g' -e 's,@SHELL\@,$(SHELL),g' -e 's,@VERSION\@,$(VERSION),g' -e 's,@PACKAGE\@,$(PACKAGE),g' -e 's,@autoconf-name\@,'`echo autoconf | sed '$(transform)'`',g' -e 's,@autoheader-name\@,'`echo autoheader | sed '$(transform)'`',g' +editsh = sed -e 's,@datadir\@,$(pkgdatadir),g' -e 's,@M4\@,$(M4),g' -e 's,@AWK\@,$(AWK),g' -e 's,@SHELL\@,$(SHELL),g' -e 's,@VERSION\@,$(VERSION),g' -e 's,@PACKAGE\@,$(PACKAGE),g' -e 's,@bindir\@,$(bindir),g' -e 's,@autoconf-name\@,'`echo autoconf | sed '$(transform)'`',g' -e 's,@autoheader-name\@,'`echo autoheader | sed '$(transform)'`',g' editpl = sed -e 's,@datadir\@,$(pkgdatadir),g' -e 's,@PERL\@,$(PERL),g' -e 's,@VERSION\@,$(VERSION),g' -e 's,@PACKAGE\@,$(PACKAGE),g'