diff options
author | Mark Kettenis <kettenis@gnu.org> | 2005-01-12 22:12:24 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2005-01-12 22:12:24 +0000 |
commit | 07baa8eeeb4f438d00ec2ae27be9cf39cef8d685 (patch) | |
tree | 9e438f6ca5d00f52a031bdabbb5395ba5bbd56ab /ld | |
parent | fa565c2b2dd66437423a588c87d1d67cf54e34bd (diff) | |
download | gdb-07baa8eeeb4f438d00ec2ae27be9cf39cef8d685.zip gdb-07baa8eeeb4f438d00ec2ae27be9cf39cef8d685.tar.gz gdb-07baa8eeeb4f438d00ec2ae27be9cf39cef8d685.tar.bz2 |
* configure.in: Be sure to invoke config.sub using the shell.
* configure: Regenerate.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rwxr-xr-x | ld/configure | 2 | ||||
-rw-r--r-- | ld/configure.in | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 5300a82..d072d91 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2005-01-12 Mark Kettenis <kettenis@gnu.org> + + * configure.in: Be sure to invoke config.sub using the shell. + * configure: Regenerate. + 2005-01-11 Alan Modra <amodra@bigpond.net.au> * configure.host: Correct sed patterns for last change. diff --git a/ld/configure b/ld/configure index 15cd2a4..f6b6d2e 100755 --- a/ld/configure +++ b/ld/configure @@ -5099,7 +5099,7 @@ do all_targets=true else # Canonicalize the secondary target names. - result=`$ac_config_sub $targ_alias 2>/dev/null` + result=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $targ_alias 2>/dev/null` if test -n "$result"; then targ=$result else diff --git a/ld/configure.in b/ld/configure.in index 87a9bba..28665ea 100644 --- a/ld/configure.in +++ b/ld/configure.in @@ -169,7 +169,7 @@ do all_targets=true else # Canonicalize the secondary target names. - result=`$ac_config_sub $targ_alias 2>/dev/null` + result=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $targ_alias 2>/dev/null` if test -n "$result"; then targ=$result else |