diff options
author | Ian Lance Taylor <ian@airs.com> | 1997-04-14 16:05:50 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1997-04-14 16:05:50 +0000 |
commit | dca6429fade6367c3be56c39bd6f055aab0a5206 (patch) | |
tree | 29423e7c1339b2faa28a5b66ec500c954a103a70 /gas | |
parent | 575653d37d2daf73f8a079f56d90b650adc0a9f6 (diff) | |
download | gdb-dca6429fade6367c3be56c39bd6f055aab0a5206.zip gdb-dca6429fade6367c3be56c39bd6f055aab0a5206.tar.gz gdb-dca6429fade6367c3be56c39bd6f055aab0a5206.tar.bz2 |
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.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 9 | ||||
-rw-r--r-- | gas/Makefile.in | 10 |
2 files changed, 14 insertions, 5 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 4b49623..77d9d1e 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,12 @@ +Mon Apr 14 11:59:08 1997 Ian Lance Taylor <ian@cygnus.com> + + * symbols.c (resolve_symbol_value): Check for division by zero. + + 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. + Thu Apr 10 14:40:00 1997 Doug Evans <dje@canuck.cygnus.com> * cgen.c (cgen_parse_operand): Renamed from cgen_asm_parse_operand. diff --git a/gas/Makefile.in b/gas/Makefile.in index 9c6922b..c71cf66 100644 --- a/gas/Makefile.in +++ b/gas/Makefile.in @@ -442,7 +442,7 @@ dvi info install-info clean-info: make-gas.com: stamp-mk.com stamp-mk.com: vmsconf.sh Makefile sh $(srcdir)/vmsconf.sh $(OBJS) > new-make.com - $(srcdir)/../move-if-change new-make.com $(srcdir)/make-gas.com + $(SHELL) $(srcdir)/../move-if-change new-make.com $(srcdir)/make-gas.com touch stamp-mk.com # Now figure out from those variables how to compile and link. @@ -551,7 +551,7 @@ config-stamp: Makefile conf echo '' >> config.new cat conf >> config.new echo '#endif /* GAS_VERSION */' >> config.new - $(srcdir)/../move-if-change config.new config.h + $(SHELL) $(srcdir)/../move-if-change config.new config.h touch config-stamp # The implicit .c.o rule doesn't work for these, perhaps because of @@ -814,7 +814,7 @@ DEP_FILE_DEPS = $(CFILES) $(HFILES) $(TARGET_CPU_CFILES) \ echo '$$(TARG_CPU_O): $$(TCDEP_@target''_cpu_type@_@obj''_format@)' >> .depa echo '$$(OBJ_FORMAT_O): $$(OBJDEP_@target''_cpu_type@_@obj''_format@)' >> .depa echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> .depa - $(srcdir)/../move-if-change .depa .dep + $(SHELL) $(srcdir)/../move-if-change .depa .dep # This rule needs a mkdep that runs "gcc -MM". # FIXME: This only works correctly if $(srcdir) is an absolute path. @@ -967,12 +967,12 @@ dep.sed: dep-in.sed config.status dep: .dep sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile cat .dep >> tmp-Makefile - $(srcdir)/../move-if-change tmp-Makefile Makefile + $(SHELL) $(srcdir)/../move-if-change tmp-Makefile Makefile dep-in: .dep sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > 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 |