diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-09-28 03:07:27 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-09-27 21:07:27 -0600 |
commit | 494933e4cdfa889d428a897c423a9f7218cb4764 (patch) | |
tree | 1bcd17a169163d4cea034fe8e5ef4619008f49a2 | |
parent | f7c69d56407d5878351a93e8f0703b4873717890 (diff) | |
download | gcc-494933e4cdfa889d428a897c423a9f7218cb4764.zip gcc-494933e4cdfa889d428a897c423a9f7218cb4764.tar.gz gcc-494933e4cdfa889d428a897c423a9f7218cb4764.tar.bz2 |
configure.in: Minor cleanups for building in the $(target_alias) subdir.
* configure.in: Minor cleanups for building in the $(target_alias)
subdir.
From-SVN: r22612
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 12 |
2 files changed, 10 insertions, 7 deletions
@@ -1,3 +1,8 @@ +Mon Sep 28 04:04:27 1998 Jeffrey A Law (law@cygnus.com) + + * configure.in: Minor cleanups for building in the $(target_alias) + subdir. + 1998-09-22 Jim Wilson <wilson@cygnus.com> * Makefile.in (bootstrap): Set r and s before make all. Use diff --git a/configure.in b/configure.in index e43f8b5..df7c404 100644 --- a/configure.in +++ b/configure.in @@ -362,20 +362,18 @@ if [ x"${host}" = x"${target}" ] ; then # that are in the 'cross only' list skipdirs="${skipdirs} ${cross_only}" is_cross_compiler=no - # Default to --enable-multilib. See similar code below. - if [ x${enable_multilib} = xno ]; then - target_subdir=. - else - target_subdir=${target_alias} - fi else # similarly, don't build the targets in the 'native only' # list when building a cross compiler skipdirs="${skipdirs} ${native_only}" is_cross_compiler=yes - target_subdir=${target_alias} fi +# We always want to use the same name for this directory, so that dejagnu +# can reliably find it. +target_subdir=${target_alias} + +target_subdir=${target_alias} if [ ! -d ${target_subdir} ] ; then if mkdir ${target_subdir} ; then true else |