summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Meissner <gnu@the-meissners.org>1999-09-14 23:29:35 +0000
committerMichael Meissner <gnu@the-meissners.org>1999-09-14 23:29:35 +0000
commit5af40edfef7be24c81cebe817febb08f2ca120c1 (patch)
tree1e10bd6c3fe228d5d6e00818a8c8422bbef6e8b8
parentab7244b946056c1a1a05608f006455c99144b579 (diff)
downloadgdb-5af40edfef7be24c81cebe817febb08f2ca120c1.tar.gz
Fix problem with going to automake 2.14
-rw-r--r--bfd/ChangeLog7
-rwxr-xr-xbfd/configure2
-rw-r--r--bfd/configure.in2
-rw-r--r--opcodes/ChangeLog7
-rwxr-xr-xopcodes/configure2
-rw-r--r--opcodes/configure.in2
6 files changed, 18 insertions, 4 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 54b4bc27f12..237e8a56763 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,10 @@
+1999-09-14 Michael Meissner <meissner@cygnus.com>
+
+ * configure.in (Canonicalization of target names): Remove adding
+ ${CONFIG_SHELL} in front of $ac_config_sub, since autoconfig 2.14
+ generates $ac_config_sub with a ${CONFIG_SHELL} already.
+ * configure: Regenerate.
+
1999-09-14 Nick Clifton <nickc@cygnus.com>
* elf32-m32r.c (ELF_MAXPAGESIZE): Change to 0x1 (at request of
diff --git a/bfd/configure b/bfd/configure
index a8d90ddf946..cbf40277761 100755
--- a/bfd/configure
+++ b/bfd/configure
@@ -5293,7 +5293,7 @@ esac
if test -n "$enable_targets" ; then
for targ in `echo $enable_targets | sed 's/,/ /g'`
do
- result=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $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 2fdd76d0884..814c73f84ac 100644
--- a/bfd/configure.in
+++ b/bfd/configure.in
@@ -341,7 +341,7 @@ AC_SUBST(WIN32LIBADD)
if test -n "$enable_targets" ; then
for targ in `echo $enable_targets | sed 's/,/ /g'`
do
- result=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $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/opcodes/ChangeLog b/opcodes/ChangeLog
index 80fc5415f34..c04827075d3 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -1,3 +1,10 @@
+1999-09-14 Michael Meissner <meissner@cygnus.com>
+
+ * configure.in (Canonicalization of target names): Remove adding
+ ${CONFIG_SHELL} in front of $ac_config_sub, since autoconfig 2.14
+ generates $ac_config_sub with a ${CONFIG_SHELL} already.
+ * configure: Regenerate.
+
Tue Sep 7 13:50:32 1999 Jeffrey A Law (law@cygnus.com)
* hppa-dis.c (print_insn_hppa): Escape '%' in output strings.
diff --git a/opcodes/configure b/opcodes/configure
index 7ac8e4b3633..e6e5029e924 100755
--- a/opcodes/configure
+++ b/opcodes/configure
@@ -4219,7 +4219,7 @@ esac
if test -n "$enable_targets" ; then
for targ in `echo $enable_targets | sed 's/,/ /g'`
do
- result=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $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/opcodes/configure.in b/opcodes/configure.in
index b8d84a5aead..f1c94b23411 100644
--- a/opcodes/configure.in
+++ b/opcodes/configure.in
@@ -90,7 +90,7 @@ AC_SUBST(WIN32LIBADD)
if test -n "$enable_targets" ; then
for targ in `echo $enable_targets | sed 's/,/ /g'`
do
- result=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $targ 2>/dev/null`
+ result=`$ac_config_sub $targ 2>/dev/null`
if test -n "$result" ; then
canon_targets="$canon_targets $result"
else