This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [patch] fix bootstrap/26999


And the followup with a couple of additions to the list of directories
we're allowing people to disable.

Same bootstrap. Same ChangeLog.


2006-08-25 Eric Christopher <echristo@apple.com>


    PR bootstrap/26999
    * configure.in: Only disable target directories.
    * configure: Regenerate.



OK?


-eric

Index: configure.in
===================================================================
--- configure.in	(revision 116453)
+++ configure.in	(working copy)
@@ -1311,7 +1311,14 @@ fi
 for dir in $configdirs $build_configdirs $target_configdirs ; do
   dirname=`echo $dir | sed -e s/target-//g -e s/build-//g -e s/-/_/g`
   if eval test x\${enable_${dirname}} "=" xno ; then
+    case "${dirname}" in
+      boehm-gc | gnattools | libada | libffi | libgomp | libgfortran \
+      | libjava | libmudflap | libobjc | libssp | libstdc++-v3 | zlib)
     noconfigdirs="$noconfigdirs $dir"
+        ;;
+      *)
+	;;
+    esac
   fi
 done
 

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]