aboutsummaryrefslogtreecommitdiff
path: root/opcodes
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
commit6d83c84bcf00bba306b0a020cc2574425c116f93 (patch)
treee7abd6f8f74a839f63077fb775e996f87f326dd1 /opcodes
parenta8100d5bb4759ac2d306ff0cd03a8b0f880a7b02 (diff)
downloadgdb-6d83c84bcf00bba306b0a020cc2574425c116f93.zip
gdb-6d83c84bcf00bba306b0a020cc2574425c116f93.tar.gz
gdb-6d83c84bcf00bba306b0a020cc2574425c116f93.tar.bz2
Fix problem with going to automake 2.14
Diffstat (limited to 'opcodes')
-rw-r--r--opcodes/ChangeLog7
-rwxr-xr-xopcodes/configure2
-rw-r--r--opcodes/configure.in2
3 files changed, 9 insertions, 2 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index 80fc541..c048270 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 7ac8e4b..e6e5029 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 b8d84a5..f1c94b2 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