forked from Imagelibrary/binutils-gdb
* configure.in: Don't bother to call config.bfd for each target.
Just call it for the default target, and use the shell variable to decide whether underscores are used.
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
Mon Sep 4 14:30:00 1995 Ian Lance Taylor <ian@cygnus.com>
|
||||
|
||||
* configure.in: Don't bother to call config.bfd for each target.
|
||||
Just call it for the default target, and use the shell variable to
|
||||
decide whether underscores are used.
|
||||
|
||||
Thu Aug 31 19:21:48 1995 Jason Molenda (crash@phydeaux.cygnus.com)
|
||||
|
||||
* configure.in: match i[3-6]86-*-win32, not just i386-*-win32.
|
||||
|
||||
@@ -45,9 +45,7 @@ dlltool_defs=
|
||||
|
||||
for targ in $target $canon_targets
|
||||
do
|
||||
bfd_target=`${config_shell} $srcdir/../bfd/config.bfd $targ`
|
||||
|
||||
if [ "x$bfd_target" = "xall" ]; then
|
||||
if [ "x$targ" = "xall" ]; then
|
||||
all_targets=true
|
||||
build_nlmconv=true
|
||||
build_srconv=true
|
||||
@@ -108,7 +106,9 @@ if [ "x${build_dlltool}" = "xtrue" ]; then
|
||||
echo "DLLTOOL_DEFS = ${dlltool_defs}" >> Makefile.2
|
||||
fi
|
||||
|
||||
if [ "x`${config_shell} $srcdir/../bfd/config.bfd $target _`" = "xyes" ]; then
|
||||
targ=$target
|
||||
. $srcdir/../bfd/config.bfd
|
||||
if test "x$targ_underscore" = "xyes"; then
|
||||
underscore=1
|
||||
else
|
||||
underscore=0
|
||||
|
||||
Reference in New Issue
Block a user