diff options
author | K. Richard Pixley <rich@cygnus> | 1992-02-08 08:57:08 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1992-02-08 08:57:08 +0000 |
commit | bcdbe02f820a40a3f01374cfdf7d18c0d7183117 (patch) | |
tree | 01b26d5937b844c164a0ddf28a21aa04946e5b09 /gdb/configure.in | |
parent | b8972815d5c6db764d39ef1f2ba6f52de57e13a0 (diff) | |
download | gdb-bcdbe02f820a40a3f01374cfdf7d18c0d7183117.zip gdb-bcdbe02f820a40a3f01374cfdf7d18c0d7183117.tar.gz gdb-bcdbe02f820a40a3f01374cfdf7d18c0d7183117.tar.bz2 |
In configure{.in} {host|target}_makefile_frag should name a file
relative to srcdir. I think it now does. configure has been
corrected. configure.texi has been clarified.
Diffstat (limited to 'gdb/configure.in')
-rw-r--r-- | gdb/configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/configure.in b/gdb/configure.in index 4128c07..e906434 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -311,8 +311,8 @@ fi # We really shouldn't depend on there being a space after TM_FILE= ... targetfile=`awk '$1 == "TM_FILE=" { print $2 }' <${srcdir}/config/mt-${gdb_target}` -host_makefile_frag=${srcdir}/config/mh-${gdb_host} -target_makefile_frag=${srcdir}/config/mt-${gdb_target} +host_makefile_frag=config/mh-${gdb_host} +target_makefile_frag=config/mt-${gdb_target} # If hostfile (XM_FILE) and/or targetfile (TM_FILE) is not set in the # ?config/* file, we don't make the corresponding links. But we have |