# HG changeset patch # User Rob Landley # Date 1165377612 18000 # Node ID 8b75dee28f400573ce282f3ac8a485b48a2d9fbb # Parent f5cd9e1c23674ac72dee61e459db51c7d8cca21c For some reason, `""` doesn't work. But "$("")" does. diff -r f5cd9e1c2367 -r 8b75dee28f40 build.sh --- a/build.sh Tue Dec 05 22:12:28 2006 -0500 +++ b/build.sh Tue Dec 05 23:00:12 2006 -0500 @@ -191,7 +191,7 @@ "$GCCNAME" -Os "$WORK"/hello.c -o "$WORK"/hello && "$GCCNAME" -Os -static "$WORK"/hello.c -o "$WORK"/hello && -[ x`qemu-${KARCH} "${WORK}"/hello` == x"Hello world!" ] && +[ x"$(qemu-${KARCH} "${WORK}"/hello)" == x"Hello world!" ] && echo Cross-toolchain seems to work. [ $? -ne 0 ] && dienow