diff mini-native.sh @ 417:6dd7e870b1d4

No shipping package should ever use -Werror, no idea what new gcc versions will decide to warn on. (Fixes build on ubuntu 8.10.)
author Rob Landley <rob@landley.net>
date Sun, 26 Oct 2008 17:51:14 -0500
parents 42faea138734
children 8029eb9a4a8c
line wrap: on
line diff
--- a/mini-native.sh	Sun Oct 26 16:12:24 2008 -0500
+++ b/mini-native.sh	Sun Oct 26 17:51:14 2008 -0500
@@ -124,7 +124,7 @@
 CC="${ARCH}-gcc" AR="${ARCH}-ar" "${CURSRC}/configure" --prefix="${TOOLS}" \
   --build="${CROSS_HOST}" --host="${CROSS_TARGET}" --target="${CROSS_TARGET}" \
   --disable-nls --disable-shared --disable-multilib --program-prefix= \
-  $BINUTILS_FLAGS &&
+  --disable-werror $BINUTILS_FLAGS &&
 make -j $CPUS configure-host &&
 make -j $CPUS &&
 make -j $CPUS install &&