aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdmund Grimley Evans <Edmund.Grimley.Evans@gmail.com>2015-03-07 18:10:45 +0000
committerEdmund Grimley Evans <Edmund.Grimley.Evans@gmail.com>2015-03-07 18:10:45 +0000
commit03303628c79c280d88214fea713a05d29a81f00a (patch)
treee525c825434fd2ca976e2d9c958f675fa8f2b377
parentd854dede033f451452ebc3e1d6b8a33a2e9724fb (diff)
downloadtinycc-03303628c79c280d88214fea713a05d29a81f00a.tar.gz
tinycc-03303628c79c280d88214fea713a05d29a81f00a.tar.bz2
tests/Makefile: Quote to avoid: /bin/sh: 1: [: !=: unexpected operator
-rw-r--r--tests/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile
index b84669e..bc68de0 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -224,7 +224,7 @@ endif
abitest: $(ABITESTS)
@echo ------------ $@ ------------
./abitest-cc$(EXESUF) lib_path=.. include="$(top_srcdir)/include"
- if [ $(CONFIG_arm_eabi) != "yes" ]; then \
+ if [ "$(CONFIG_arm_eabi)" != "yes" ]; then \
./abitest-tcc$(EXESUF) lib_path=.. include="$(top_srcdir)/include"; fi
vla_test$(EXESUF): vla_test.c