From acb6fc41730c9b96ab64cb41238824f48791e9c1 Mon Sep 17 00:00:00 2001 From: Alexandre Oliva Date: Thu, 26 Apr 2001 05:42:15 +0000 Subject: [PATCH] * configure.in (noconfigdirs): Don't reset it from scratch in the target case; only append to it. --- ChangeLog | 5 +++++ configure.in | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 25a59e171..c5ac6d6a6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-04-26 Alexandre Oliva + + * configure.in (noconfigdirs): Don't reset it from scratch in the + target case; only append to it. + 2001-04-26 Alexandre Oliva * configure.in (noconfigdirs) [hppa*-*-*, mips*-*-irix6*, diff --git a/configure.in b/configure.in index 6c4591c3b..15fe7b427 100644 --- a/configure.in +++ b/configure.in @@ -905,13 +905,13 @@ case "${target}" in if [ x${is_cross_compiler} != xno ] ; then target_configdirs="${target_configdirs} target-libstub target-cygmon" fi - noconfigdirs="target-libffi" + noconfigdirs="$noconfigdirs target-libffi" ;; sparclite-*-*) if [ x${is_cross_compiler} != xno ] ; then target_configdirs="${target_configdirs} target-bsp target-libstub target-cygmon" fi - noconfigdirs="target-libffi" + noconfigdirs="$noconfigdirs target-libffi" ;; sparc-*-sunos4*) if [ x${is_cross_compiler} != xno ] ; then @@ -956,7 +956,7 @@ case "${target}" in *-*-mpw*) # Macs want a resource compiler. configdirs="$configdirs grez" - noconfigdirs="target-libffi" + noconfigdirs="$noconfigdirs target-libffi" ;; esac