aboutsummaryrefslogtreecommitdiff
path: root/gdb/configure
diff options
context:
space:
mode:
authorJohn Gilmore <gnu@cygnus>1991-07-05 00:04:59 +0000
committerJohn Gilmore <gnu@cygnus>1991-07-05 00:04:59 +0000
commit6988f5c0ae12e1e978129c89d5633929ebd13c41 (patch)
treead9f6d5d0a126470312b8c633f066a07ae2f91a0 /gdb/configure
parent4708037854ee7a4f1602ae5149b3e461315ca0ca (diff)
downloadgdb-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')
-rwxr-xr-xgdb/configure28
1 files changed, 24 insertions, 4 deletions
diff --git a/gdb/configure b/gdb/configure
index cd45e9c..e52fc6a 100755
--- a/gdb/configure
+++ b/gdb/configure
@@ -246,6 +246,13 @@ if [ -n "${template}" ] ; then
echo Rebuilt configure in `pwd`
if [ -z "${norecurse}" ] ; then
+ # If template is relative path, make it absolute for recursing.
+ if echo "${template}" | grep -s '^/' ; then
+ true
+ else
+ template=`pwd`/${template}
+ fi
+
while [ -n "${configdirs}" ] ; do
# set configdir to car of configdirs, configdirs to cdr of configdirs
set ${configdirs}; configdir=$1; shift; configdirs=$*
@@ -543,10 +550,10 @@ 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
## end of post-target part.
if [ "${host}" = "${target}" ] ; then
@@ -661,7 +668,20 @@ exit 0
#
# $Log$
-# Revision 1.7 1991/07/04 15:59:46 gnu
+# Revision 1.8 1991/07/05 00:04:58 gnu
+# 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.
+#
+# Revision 1.7 1991/07/04 15:59:46 gnu
# Make gdb work with configure. Only thing that doesn't work is the -list
# option (as far as I know).
#