# HG changeset patch # User Rob Landley # Date 1176143928 14400 # Node ID dff36fab9e7e2c793ba5af7095a54ec4b5659945 # Parent ad6b2ba3ea2d420cdff4b198be3e34eaae3ca5ad Of course there's a bug. (The ranlib fix was apparently a NOP, this should actually fix it.) diff -r ad6b2ba3ea2d -r dff36fab9e7e mini-native.sh --- a/mini-native.sh Mon Apr 09 12:10:09 2007 -0400 +++ b/mini-native.sh Mon Apr 09 14:38:48 2007 -0400 @@ -145,7 +145,7 @@ bash_cv_have_mbstate_t=yes bash_cv_getenv_redef=no EOF -CC="${ARCH}-gcc" RANLIB="$(ARCH)-ranlib" ./configure --prefix="${TOOLS}" \ +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 &&