diff options
author | John Gilmore <gnu@cygnus> | 1991-07-05 00:04:59 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1991-07-05 00:04:59 +0000 |
commit | 6988f5c0ae12e1e978129c89d5633929ebd13c41 (patch) | |
tree | ad9f6d5d0a126470312b8c633f066a07ae2f91a0 /gdb/configure.in | |
parent | 4708037854ee7a4f1602ae5149b3e461315ca0ca (diff) | |
download | gdb-6988f5c0ae12e1e978129c89d5633929ebd13c41.zip gdb-6988f5c0ae12e1e978129c89d5633929ebd13c41.tar.gz gdb-6988f5c0ae12e1e978129c89d5633929ebd13c41.tar.bz2 |
Thu Jul 4 14:47:06 1991 John Gilmore (gnu at cygint.cygnus.com)
* configure.in, Makefile.in: Avoid rebuilding "depend" as much.
Avoid declaring Makefile dependencies, because GNU Make stupidly
tries to update it if we do.
* coffread.c: Revise for minor changes to bfd internal coff
indexes.
* configure: If -template= is given a relative path, make it
absolute before recurring in subdirectories.
Diffstat (limited to 'gdb/configure.in')
-rw-r--r-- | gdb/configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/configure.in b/gdb/configure.in index 4e5957d..c25fb13 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -54,7 +54,7 @@ case ${srcdir} in esac rm -f Makefile -if [ ! -f depend ]; then - make -f Makefile.conf depend +if [ ! -f ${srcdir}/depend ]; then + make -f Makefile.conf make-depend fi -make -f Makefile.conf Makefile +make -f Makefile.conf make-Makefile |