diff options
author | Ian Lance Taylor <ian@airs.com> | 1993-04-01 18:49:02 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1993-04-01 18:49:02 +0000 |
commit | 37ed0b119b1c7fdfbf21e68007f88452cbc6f735 (patch) | |
tree | 85634f3d06a9e2d1d0740eb83607f41bc924ad91 /configure.in | |
parent | 117733ad8d37ddea7f82fb98d3c091e48682724b (diff) | |
download | gdb-37ed0b119b1c7fdfbf21e68007f88452cbc6f735.zip gdb-37ed0b119b1c7fdfbf21e68007f88452cbc6f735.tar.gz gdb-37ed0b119b1c7fdfbf21e68007f88452cbc6f735.tar.bz2 |
Revert automatic setting of -with-gnu-ld and -with-gnu-as.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/configure.in b/configure.in index e74dd27..b66fafa 100644 --- a/configure.in +++ b/configure.in @@ -193,14 +193,15 @@ case "${target}" in esac # Set with_gnu_as and with_gnu_ld as appropriate. -if [ x${with_gnu_as} != xyes ] && echo ${configdirs} | grep gas > /dev/null && [ -d ${srcdir}/gas ]; then - with_gnu_as=yes - withoptions="$withoptions -with-gnu-as" -fi -if [ x${with_gnu_ld} != xyes ] && echo ${configdirs} | grep ld > /dev/null && [ -d ${srcdir}/ld ]; then - with_gnu_ld=yes - withoptions="$withoptions -with-gnu-ld" -fi +# This is commented out for now. +#if [ x${with_gnu_as} != xyes ] && echo ${configdirs} | grep gas > /dev/null && [ -d ${srcdir}/gas ]; then +# with_gnu_as=yes +# withoptions="$withoptions -with-gnu-as" +#fi +#if [ x${with_gnu_ld} != xyes ] && echo ${configdirs} | grep ld > /dev/null && [ -d ${srcdir}/ld ]; then +# with_gnu_ld=yes +# withoptions="$withoptions -with-gnu-ld" +#fi target_makefile_frag=config/mt-${bfd_target} |