aboutsummaryrefslogtreecommitdiff
path: root/ld/Makefile.am
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2000-07-01 01:41:09 +0000
committerAlan Modra <amodra@gmail.com>2000-07-01 01:41:09 +0000
commit0bdaf48bac96b318feed22ef57035b06133fcf2f (patch)
treee8928b9d365d067eba6e374fd61c32266caf24eb /ld/Makefile.am
parent9b443040f82ecf46cfec9d18b9d1ed2d487c53d5 (diff)
downloadfsf-binutils-gdb-0bdaf48bac96b318feed22ef57035b06133fcf2f.zip
fsf-binutils-gdb-0bdaf48bac96b318feed22ef57035b06133fcf2f.tar.gz
fsf-binutils-gdb-0bdaf48bac96b318feed22ef57035b06133fcf2f.tar.bz2
Fix 2000-06-22. grep after running dep.sed
Diffstat (limited to 'ld/Makefile.am')
-rw-r--r--ld/Makefile.am9
1 files changed, 5 insertions, 4 deletions
diff --git a/ld/Makefile.am b/ld/Makefile.am
index beb6580..cbb1503 100644
--- a/ld/Makefile.am
+++ b/ld/Makefile.am
@@ -853,7 +853,7 @@ MOSTLYCLEANFILES = $(STAGESTUFF) ld1$(EXEEXT) ld2$(EXEEXT) ld3$(EXEEXT) \
ldemul-list.h crtbegin.o crtend.o ld.log ld.sum
mostlyclean-local:
-rm -rf tmpdir
-CLEANFILES = dep.sed DEP DEP1 DEP2
+CLEANFILES = dep.sed DEP DEPA DEP1 DEP2
.PHONY: install-exec-local install-data-local
@@ -892,11 +892,12 @@ distclean-local:
DEP: dep.sed $(CFILES) $(HFILES) $(GENERATED_CFILES) $(GENERATED_HFILES) config.h
rm -f DEP1
$(MAKE) MKDEP="$(MKDEP)" DEP1
- if grep ' /' DEP1 > /dev/null 2> /dev/null; then \
+ sed -f dep.sed < DEP1 > DEPA
+ echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> DEPA
+ if grep ' /' DEPA > /dev/null 2> /dev/null; then \
echo 'make DEP failed!'; exit 1; \
else \
- sed -f dep.sed < DEP1 > $@; \
- echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> $@; \
+ mv -f DEPA $@; \
fi
DEP1: $(CFILES) $(GENERATED_CFILES)