# HG changeset patch # User Rob Landley # Date 1300146368 18000 # Node ID 42496ee2815f415243af045387bf2f660a0dcf5f # Parent 29e1df07e99a267c153e91d8caffa81423b188b8 Fix regression: make #!/bin/sh point to bash instead of busybox shell for dev environment. (Oops.) diff -r 29e1df07e99a -r 42496ee2815f root-filesystem.sh --- a/root-filesystem.sh Wed Feb 09 21:06:18 2011 -0600 +++ b/root-filesystem.sh Mon Mar 14 18:46:08 2011 -0500 @@ -16,9 +16,10 @@ cp -a "$BUILD/simple-root-filesystem-$ARCH/." "$STAGE_DIR" || dienow -# Remove shared libraries copied from cross compiler. +# Remove shared libraries copied from cross compiler, and let /bin/sh point +# to bash out of native compiler instead of busybox shell. -rm -rf "$BUILD/root-filesystem-$ARCH/usr/lib" 2>/dev/null +rm -rf "$BUILD/root-filesystem-$ARCH/"{usr/lib,bin/sh} 2>/dev/null # Copy native compiler, but do not overwrite existing files (which could # do bad things to busybox).