diff options
author | Alan Modra <amodra@gmail.com> | 2000-06-22 13:01:43 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2000-06-22 13:01:43 +0000 |
commit | 1581f8c9feb992568c0f36d2c76d43f7a75a4750 (patch) | |
tree | fd86b2f947da0e879eae266d65bddf7d3470dae9 /ld/Makefile.am | |
parent | 45288df104aeefbd6fb98ac40659b1aec6b6bb65 (diff) | |
download | binutils-gdb-1581f8c9feb992568c0f36d2c76d43f7a75a4750.tar.gz |
Ensure /usr/include and the like stay out of dependencies.
Diffstat (limited to 'ld/Makefile.am')
-rw-r--r-- | ld/Makefile.am | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/ld/Makefile.am b/ld/Makefile.am index ec708dfb0a2..beb6580e153 100644 --- a/ld/Makefile.am +++ b/ld/Makefile.am @@ -892,8 +892,12 @@ distclean-local: DEP: dep.sed $(CFILES) $(HFILES) $(GENERATED_CFILES) $(GENERATED_HFILES) config.h rm -f DEP1 $(MAKE) MKDEP="$(MKDEP)" DEP1 - sed -f dep.sed < DEP1 > $@ - echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> $@ + if grep ' /' DEP1 > /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' >> $@; \ + fi DEP1: $(CFILES) $(GENERATED_CFILES) echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > DEP2 |