test-configure: use correct quoting

CFLAGS, FOO, BAR may contain spaces.

Signed-off-by: Simon McVittie <smcv@debian.org>
tingping/wmclass
Simon McVittie 2016-05-17 11:26:43 +01:00 committed by Alexander Larsson
parent d4738cca16
commit aa91b28a74
2 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -29,7 +29,7 @@
"type": "file",
"path": "test-configure",
"dest-filename": "configure",
"sha256": "ce0a7014057cc45ac6cfa4b84fe848d46b1225f4ce03f1b52d5ab73521816cbf"
"sha256": "675a1ac2feec4d4f54e581b4b01bc3cfd2c1cf31aa5963574d31228c8a11b7e7"
},
{
"type": "file",