diff options
| author | Edmund Grimley Evans <Edmund.Grimley.Evans@gmail.com> | 2015-03-07 18:10:45 +0000 |
|---|---|---|
| committer | Edmund Grimley Evans <Edmund.Grimley.Evans@gmail.com> | 2015-03-07 18:10:45 +0000 |
| commit | 03303628c79c280d88214fea713a05d29a81f00a (patch) | |
| tree | e525c825434fd2ca976e2d9c958f675fa8f2b377 /tests/Makefile | |
| parent | d854dede033f451452ebc3e1d6b8a33a2e9724fb (diff) | |
| download | tinycc-03303628c79c280d88214fea713a05d29a81f00a.tar.gz tinycc-03303628c79c280d88214fea713a05d29a81f00a.tar.bz2 | |
tests/Makefile: Quote to avoid: /bin/sh: 1: [: !=: unexpected operator
Diffstat (limited to 'tests/Makefile')
| -rw-r--r-- | tests/Makefile | 2 |
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 |
