diff options
author | Per Bothner <per@bothner.com> | 1991-11-03 23:03:01 +0000 |
---|---|---|
committer | Per Bothner <per@bothner.com> | 1991-11-03 23:03:01 +0000 |
commit | aeedc30e259cf538ed162639a75060b9c343f6f9 (patch) | |
tree | aba073fa3904c0e3238eaf8c129d7f4664b41f02 /ld/configure.in | |
parent | b27d2046482bc4f2170c3ab14d4ec1c45a0a292b (diff) | |
download | gdb-aeedc30e259cf538ed162639a75060b9c343f6f9.zip gdb-aeedc30e259cf538ed162639a75060b9c343f6f9.tar.gz gdb-aeedc30e259cf538ed162639a75060b9c343f6f9.tar.bz2 |
* configure.in: Fixed typo. Also, a fix for hp300bsd.
* ldlang.c (init_os): Compensate for BFD change,
where bfd_make_section now returns NULL for a duplicate
section request, instead of the old section.
Diffstat (limited to 'ld/configure.in')
-rw-r--r-- | ld/configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ld/configure.in b/ld/configure.in index 15f3a6f..6891715 100644 --- a/ld/configure.in +++ b/ld/configure.in @@ -97,9 +97,8 @@ if [ ! -f ${files} ] ; then echo '***' ${srcname} does not support host ${host} exit 1 fi - host_makefile_frag= -if [ -f config/h-${my_host} ] ; then +if [ -f config/mh-${my_host} ] ; then host_makefile_frag=config/mh-${my_host} fi @@ -125,6 +124,7 @@ sun) m68k) case ${target_vendor} in sony) my_target=news;; + hp) my_target=hp300bsd;; *) echo "Unknown m68k target vendor:" ${target_vendor} exit 1 |