diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index da85540e5a3..a00f1ca0f08 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Jun 12 21:12:28 1997 Bob Manson <manson@charmed.cygnus.com> + + * configure.in (targargs): Pass --build if we're doing + a cross-compile. + Fri Jun 6 21:38:40 1997 Rob Savoye <rob@chinadoll.cygnus.com> * configure: Use '|' instead of ":" as the seperator in diff --git a/configure.in b/configure.in index ac40b2b400a..112aa2ea658 100644 --- a/configure.in +++ b/configure.in @@ -878,7 +878,7 @@ targargs=`echo "${arguments}" | \ # sorts of decisions they want to make on this basis. Please consider # this option to be deprecated. FIXME. if [ x${is_cross_compiler} = xyes ]; then - targargs="--with-cross-host=${host_alias} ${targargs}" + targargs="--with-cross-host=${host_alias} --build=${build_alias} ${targargs}" fi # Default to --enable-multilib. |