changeset 24:60ad658c5aab

One more missing path in the qemu-arm check. (Notice I'm not building qemu from source yet. That requires gcc 3 or a patch. Have to decide how to approach it.)
author Rob Landley <rob@landley.net>
date Tue, 05 Dec 2006 21:05:17 -0500
parents a5e004e33daa
children 6b726de18f05
files build.sh
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/build.sh	Tue Dec 05 20:51:40 2006 -0500
+++ b/build.sh	Tue Dec 05 21:05:17 2006 -0500
@@ -190,8 +190,8 @@
 # Build something dynamic, then static, to verify header/library paths.
 
 "$GCCNAME" -Os "$WORK"/hello.c -o "$WORK"/hello &&
-"$GCCNAME" -Os -static "$WORK"/hello.c -o "$WORK"/hello
-[ x`qemu-${KARCH} hello` == x"Hello world!" ] &&
+"$GCCNAME" -Os -static "$WORK"/hello.c -o "$WORK"/hello &&
+[ x`qemu-${KARCH} "${WORK}/hello` == x"Hello world!" ] &&
 echo Cross-toolchain seems to work.
 
 [ $? -ne 0 ] && dienow