Thu May 28 18:37:36 1998 Ian Lance Taylor <ian@cygnus.com>

* Makefile.in (editsh): Substitute for SHELL.
	(Makefile, config.status): Use $(SHELL) when running
	config.status.
Wed Sep  3 23:00:44 1997  Chris Provenzano  <proven@cygnus.com>
	* Makefile.in : Set SHELL=@SHELL@. configure now substiutes
	${CONFIG_SHELL-/bin/sh} in for @SHELL@ at configure time.
This commit is contained in:
Ben Elliston 1998-09-03 00:54:34 +00:00
parent 833faafa10
commit 5e46508ac5
2 changed files with 10 additions and 8 deletions

View File

@ -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;"

View File

@ -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;"