mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 20:28:28 +08:00
From Thomas Graichen <graichen@rzpd.de>:
* Makefile.in: Always use $(SHELL) when running move-if-change. * configure.in: Use ${CONFIG_SHELL} when running $ac_config_sub. * configure: Rebuild.
This commit is contained in:
@ -1,3 +1,10 @@
|
|||||||
|
Mon Apr 14 11:52:39 1997 Ian Lance Taylor <ian@cygnus.com>
|
||||||
|
|
||||||
|
From Thomas Graichen <graichen@rzpd.de>:
|
||||||
|
* Makefile.in: Always use $(SHELL) when running move-if-change.
|
||||||
|
* configure.in: Use ${CONFIG_SHELL} when running $ac_config_sub.
|
||||||
|
* configure: Rebuild.
|
||||||
|
|
||||||
Fri Apr 4 13:28:02 1997 Ian Lance Taylor <ian@cygnus.com>
|
Fri Apr 4 13:28:02 1997 Ian Lance Taylor <ian@cygnus.com>
|
||||||
|
|
||||||
* configure.in: Add AC_FUNC_ALLOCA.
|
* configure.in: Add AC_FUNC_ALLOCA.
|
||||||
|
@ -269,7 +269,7 @@ underscore.c: stamp-under ; @true
|
|||||||
stamp-under: Makefile
|
stamp-under: Makefile
|
||||||
echo '/*WARNING: This file is automatically generated!*/' >underscore.t
|
echo '/*WARNING: This file is automatically generated!*/' >underscore.t
|
||||||
echo "int prepends_underscore = @UNDERSCORE@;" >>underscore.t
|
echo "int prepends_underscore = @UNDERSCORE@;" >>underscore.t
|
||||||
$(srcdir)/../move-if-change underscore.t underscore.c
|
$(SHELL) $(srcdir)/../move-if-change underscore.t underscore.c
|
||||||
touch stamp-under
|
touch stamp-under
|
||||||
|
|
||||||
version.o: version.c Makefile
|
version.o: version.c Makefile
|
||||||
@ -420,7 +420,7 @@ $(NLMCONV_PROG): nlmconv.o nlmheader.o $(ADDL_DEPS)
|
|||||||
rm -f .dep2
|
rm -f .dep2
|
||||||
echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > .dep2
|
echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > .dep2
|
||||||
$(DEP) -f .dep2 $(ALL_CFLAGS) $?
|
$(DEP) -f .dep2 $(ALL_CFLAGS) $?
|
||||||
$(srcdir)/../move-if-change .dep2 .dep1
|
$(SHELL) $(srcdir)/../move-if-change .dep2 .dep1
|
||||||
|
|
||||||
dep.sed: dep-in.sed config.status
|
dep.sed: dep-in.sed config.status
|
||||||
sed <$(srcdir)/dep-in.sed >dep.sed \
|
sed <$(srcdir)/dep-in.sed >dep.sed \
|
||||||
@ -431,12 +431,12 @@ dep.sed: dep-in.sed config.status
|
|||||||
dep: .dep
|
dep: .dep
|
||||||
sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
|
sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
|
||||||
cat .dep >> tmp-Makefile
|
cat .dep >> tmp-Makefile
|
||||||
$(srcdir)/../move-if-change tmp-Makefile Makefile
|
$(SHELL) $(srcdir)/../move-if-change tmp-Makefile Makefile
|
||||||
|
|
||||||
dep-in: .dep
|
dep-in: .dep
|
||||||
sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
|
sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
|
||||||
cat .dep >> tmp-Makefile.in
|
cat .dep >> tmp-Makefile.in
|
||||||
$(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
|
$(SHELL) $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
|
||||||
|
|
||||||
.PHONY: dep dep-in
|
.PHONY: dep dep-in
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user