* configure.in (noconfigdirs): Don't reset it from scratch in the

target case; only append to it.
This commit is contained in:
Alexandre Oliva 2001-04-26 05:42:15 +00:00
parent 5e6f1ab22a
commit acb6fc4173
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2001-04-26 Alexandre Oliva <aoliva@redhat.com>
* configure.in (noconfigdirs): Don't reset it from scratch in the
target case; only append to it.
2001-04-26 Alexandre Oliva <aoliva@redhat.com> 2001-04-26 Alexandre Oliva <aoliva@redhat.com>
* configure.in (noconfigdirs) [hppa*-*-*, mips*-*-irix6*, * configure.in (noconfigdirs) [hppa*-*-*, mips*-*-irix6*,

View File

@ -905,13 +905,13 @@ case "${target}" in
if [ x${is_cross_compiler} != xno ] ; then if [ x${is_cross_compiler} != xno ] ; then
target_configdirs="${target_configdirs} target-libstub target-cygmon" target_configdirs="${target_configdirs} target-libstub target-cygmon"
fi fi
noconfigdirs="target-libffi" noconfigdirs="$noconfigdirs target-libffi"
;; ;;
sparclite-*-*) sparclite-*-*)
if [ x${is_cross_compiler} != xno ] ; then if [ x${is_cross_compiler} != xno ] ; then
target_configdirs="${target_configdirs} target-bsp target-libstub target-cygmon" target_configdirs="${target_configdirs} target-bsp target-libstub target-cygmon"
fi fi
noconfigdirs="target-libffi" noconfigdirs="$noconfigdirs target-libffi"
;; ;;
sparc-*-sunos4*) sparc-*-sunos4*)
if [ x${is_cross_compiler} != xno ] ; then if [ x${is_cross_compiler} != xno ] ; then
@ -956,7 +956,7 @@ case "${target}" in
*-*-mpw*) *-*-mpw*)
# Macs want a resource compiler. # Macs want a resource compiler.
configdirs="$configdirs grez" configdirs="$configdirs grez"
noconfigdirs="target-libffi" noconfigdirs="$noconfigdirs target-libffi"
;; ;;
esac esac