diff options
author | Stu Grossman <grossman@cygnus> | 1992-04-10 15:33:31 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1992-04-10 15:33:31 +0000 |
commit | 601836ef90ff90b89ef5a23f62d4396a3bd18129 (patch) | |
tree | 9240b6a8edf6070e3a27fad414d0d82e424d69ee /gdb/Makefile.in | |
parent | 9b6f92dbfd7d91715a4d7b6b3c60ccee8cbabeb7 (diff) | |
download | gdb-601836ef90ff90b89ef5a23f62d4396a3bd18129.zip gdb-601836ef90ff90b89ef5a23f62d4396a3bd18129.tar.gz gdb-601836ef90ff90b89ef5a23f62d4396a3bd18129.tar.bz2 |
* Makefile.in (depend): Fix dependancy generation so that it does
not include gcc 'fixincluded' files, which are usually in a system
specific location.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 818a903..92bec5e 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -423,7 +423,7 @@ depend: $(SOURCES) Makefile.in @echo can safely be ignored. @echo Also ignore parse errors in valops.c, and any errors in @echo arm-convert.s. - -$(GCC) -MM $(CFLAGS) -I$(BFD_DIR) \ + -$(GCC) -MM -nostdinc -I/usr/include $(CFLAGS) -I$(BFD_DIR) \ `ls $(SOURCES) | grep -v '\.[hy]$$' |sort -u` >depend.tmp # If running in srcdir, translate "./foo.c" into "$srcdir/foo.c" except # for xm.h and tm.h. This allows the same "depend" file to be used |