diff mini-native.sh @ 183:d2a27709d3b6

Fixup the -j stuff to actually work. (typo in gcc, and uClibc can't use it.)
author Rob Landley <rob@landley.net>
date Tue, 26 Jun 2007 21:32:19 -0400
parents fc827ab6166f
children a0a17e78c07d
line wrap: on
line diff
--- a/mini-native.sh	Tue Jun 26 17:51:14 2007 -0400
+++ b/mini-native.sh	Tue Jun 26 21:32:19 2007 -0400
@@ -35,9 +35,10 @@
 
 setupfor uClibc
 make allnoconfig KCONFIG_ALLCONFIG="${WORK}/miniconfig-uClibc" &&
+# Can't use -j here, build is unstable.
 make CROSS="${ARCH}-" KERNEL_HEADERS="${TOOLS}/include" PREFIX="${TOOLS}/" \
         RUNTIME_PREFIX=/ DEVEL_PREFIX=/ UCLIBC_LDSO_NAME=ld-uClibc \
-        -j $CPUS all install_runtime install_dev utils &&
+        all install_runtime install_dev utils &&
 # utils_install wants to put stuff in usr/bin instead of bin.
 install -m 755 utils/{readelf,ldd,ldconfig} "${TOOLS}/bin" &&
 cd .. &&
@@ -148,7 +149,8 @@
 CC="${ARCH}-gcc" RANLIB="${ARCH}-ranlib" ./configure --prefix="${TOOLS}" \
   --build="${CROSS_HOST}" --host="${CROSS_TARGET}" --cache-file=config.cache \
   --without-bash-malloc --disable-readline &&
-make -j $CPUS &&
+# note: doesn't work with -j
+make &&
 make install &&
 # Make bash the default shell.
 ln -s bash "${TOOLS}/bin/sh" &&