aboutsummaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1995-07-05 14:34:12 +0000
committerIan Lance Taylor <ian@airs.com>1995-07-05 14:34:12 +0000
commit9525b61b1b82bcd7f9de30c9278cc9d52e9794b9 (patch)
tree8fd5b9a943a8cdf8596ce5bdcaef3f257ca8ead6 /bfd
parentb6113657eb083653806e8624b79d484920c98464 (diff)
downloadfsf-binutils-gdb-9525b61b1b82bcd7f9de30c9278cc9d52e9794b9.zip
fsf-binutils-gdb-9525b61b1b82bcd7f9de30c9278cc9d52e9794b9.tar.gz
fsf-binutils-gdb-9525b61b1b82bcd7f9de30c9278cc9d52e9794b9.tar.bz2
* configure.in: Use $ac_config_sub, not $configsub.
* configure: Likewise.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/ChangeLog9
-rwxr-xr-xbfd/configure2
-rw-r--r--bfd/configure.in2
3 files changed, 11 insertions, 2 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 6d69954..772a252 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,12 @@
+Wed Jul 5 10:31:47 1995 Ian Lance Taylor <ian@cygnus.com>
+
+ * configure.in: Use $ac_config_sub, not $configsub.
+ * configure: Likewise.
+
+ Permit --enable-targets=ieee:
+ * config.bfd (*-*-ieee*): New target.
+ * config/ieee.mt: New file.
+
Wed Jul 5 04:16:35 1995 Ken Raeburn <raeburn@kr-pc.cygnus.com>
* config/i386aix.mh (HDEFINES): Remove -DFASCIST_FDOPEN.
diff --git a/bfd/configure b/bfd/configure
index 43b20d1..a1fb8a1 100755
--- a/bfd/configure
+++ b/bfd/configure
@@ -610,7 +610,7 @@ fi
if test -n "$enable_targets" ; then
for targ in `echo $enable_targets | sed 's/,/ /g'`
do
- result=`$configsub $targ 2>/dev/null`
+ result=`$ac_config_sub $targ 2>/dev/null`
if test -n "$result" ; then
canon_targets="$canon_targets $result"
else
diff --git a/bfd/configure.in b/bfd/configure.in
index 2a3f45d..fbf0ae4 100644
--- a/bfd/configure.in
+++ b/bfd/configure.in
@@ -56,7 +56,7 @@ AC_SUBST_FILE(host_makefile_frag)
if test -n "$enable_targets" ; then
for targ in `echo $enable_targets | sed 's/,/ /g'`
do
- result=`$configsub $targ 2>/dev/null`
+ result=`$ac_config_sub $targ 2>/dev/null`
if test -n "$result" ; then
canon_targets="$canon_targets $result"
else