From: Ben Elliston Date: Thu, 3 Sep 1998 00:54:34 +0000 (+0000) Subject: Thu May 28 18:37:36 1998 Ian Lance Taylor X-Git-Tag: autoconf-2-13-rc1~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5e46508ac55c03edbf1395a3fd7c9276ca3c7b58;p=thirdparty%2Fautoconf.git Thu May 28 18:37:36 1998 Ian Lance Taylor * Makefile.in (editsh): Substitute for SHELL. (Makefile, config.status): Use $(SHELL) when running config.status. Wed Sep 3 23:00:44 1997 Chris Provenzano * Makefile.in : Set SHELL=@SHELL@. configure now substiutes ${CONFIG_SHELL-/bin/sh} in for @SHELL@ at configure time. --- diff --git a/Makefile.in b/Makefile.in index 14004d1e..7cb2cbb3 100644 --- a/Makefile.in +++ b/Makefile.in @@ -52,7 +52,7 @@ infodir = @infodir@ #### End of system configuration section. #### -SHELL = /bin/sh +SHELL = @SHELL@ SUBDIRS = testsuite @@ -74,7 +74,8 @@ DISTFILES = AUTHORS COPYING ChangeLog ChangeLog.1 INSTALL \ standards.texi make-stds.texi standards.info* editsh = sed -e 's,@''datadir''@,$(acdatadir),g' -e \ - 's,@''M4''@,$(M4),g' -e 's,@''AWK''@,$(AWK),g' + 's,@''M4''@,$(M4),g' -e 's,@''AWK''@,$(AWK),g' \ + -e 's,@''SHELL''@,$(SHELL),g' editpl = sed -e 's,@''datadir''@,$(acdatadir),g' -e 's,@''PERL''@,$(PERL),g' all: ${SCRIPTS} info @@ -172,9 +173,9 @@ ${srcdir}/configure: configure.in $(M4FILES) $(M4) autoconf.m4 configure.in > configure.tmp && \ chmod +x configure.tmp && mv configure.tmp configure Makefile: Makefile.in config.status - ./config.status + $(SHELL) ./config.status config.status: configure - ./config.status --recheck + $(SHELL) ./config.status --recheck maintainer-clean:: @echo "This command is intended for maintainers to use;" diff --git a/doc/Makefile.in b/doc/Makefile.in index 14004d1e..7cb2cbb3 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -52,7 +52,7 @@ infodir = @infodir@ #### End of system configuration section. #### -SHELL = /bin/sh +SHELL = @SHELL@ SUBDIRS = testsuite @@ -74,7 +74,8 @@ DISTFILES = AUTHORS COPYING ChangeLog ChangeLog.1 INSTALL \ standards.texi make-stds.texi standards.info* editsh = sed -e 's,@''datadir''@,$(acdatadir),g' -e \ - 's,@''M4''@,$(M4),g' -e 's,@''AWK''@,$(AWK),g' + 's,@''M4''@,$(M4),g' -e 's,@''AWK''@,$(AWK),g' \ + -e 's,@''SHELL''@,$(SHELL),g' editpl = sed -e 's,@''datadir''@,$(acdatadir),g' -e 's,@''PERL''@,$(PERL),g' all: ${SCRIPTS} info @@ -172,9 +173,9 @@ ${srcdir}/configure: configure.in $(M4FILES) $(M4) autoconf.m4 configure.in > configure.tmp && \ chmod +x configure.tmp && mv configure.tmp configure Makefile: Makefile.in config.status - ./config.status + $(SHELL) ./config.status config.status: configure - ./config.status --recheck + $(SHELL) ./config.status --recheck maintainer-clean:: @echo "This command is intended for maintainers to use;"