diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-06-27 21:48:29 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-06-27 15:48:29 -0600 |
commit | 69b471bc4209e00da1301b02458c2299f6ec47c4 (patch) | |
tree | c89ab4d135a993a010ebbfe036e6a5005f48e7ac | |
parent | b00c2351b5f3475954253a2239bd6dfa4b951e91 (diff) | |
download | gcc-69b471bc4209e00da1301b02458c2299f6ec47c4.zip gcc-69b471bc4209e00da1301b02458c2299f6ec47c4.tar.gz gcc-69b471bc4209e00da1301b02458c2299f6ec47c4.tar.bz2 |
configure.in (target_subdir): Set to ${target_alias} instead of "libraries".
* configure.in (target_subdir): Set to ${target_alias} instead
of "libraries".
From-SVN: r20760
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Sat Jun 27 22:46:32 1998 Jeffrey A Law (law@cygnus.com) + + * configure.in (target_subdir): Set to ${target_alias} instead + of "libraries". + 1998-06-26 Manfred Hollstein <manfred@s-direktnet.de> * Makefile.in (BASE_FLAGS_TO_PASS): Add gcc_version_trigger. diff --git a/configure.in b/configure.in index 7133661..f61d3c8 100644 --- a/configure.in +++ b/configure.in @@ -363,7 +363,7 @@ if [ x"${host}" = x"${target}" ] ; then if [ x${enable_multilib} = xno ]; then target_subdir=. else - target_subdir=libraries + target_subdir=${target_alias} fi else # similarly, don't build the targets in the 'native only' |