summaryrefslogtreecommitdiff
path: root/tests/test-configure
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-configure')
-rwxr-xr-xtests/test-configure10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/test-configure b/tests/test-configure
index 3f3e85a..975b6ad 100755
--- a/tests/test-configure
+++ b/tests/test-configure
@@ -7,14 +7,14 @@ fi
cat <<EOF > Makefile
all:
echo Building
- if [ x\$(CFLAGS) != "x-O2 -g" ]; then exit 1; fi
- if [ x\$(FOO) != xbar ]; then exit 1; fi
- if [ x\$(BAR) != x2 ]; then exit 1; fi
+ if [ "x\$(CFLAGS)" != "x-O2 -g" ]; then exit 1; fi
+ if [ "x\$(FOO)" != xbar ]; then exit 1; fi
+ if [ "x\$(BAR)" != x2 ]; then exit 1; fi
install:
echo Installing
- if [ x\$(FOO) != xbar ]; then exit 1; fi
- if [ x\$(BAR) != x3 ]; then exit 1; fi
+ if [ "x\$(FOO)" != xbar ]; then exit 1; fi
+ if [ "x\$(BAR)" != x3 ]; then exit 1; fi
mkdir -p /app/bin
cp -a hello2.sh /app/bin/
mkdir -p /app/share