tests: remove bashism from a test
authorStefano Lattarini <stefano.lattarini@gmail.com>
Sat, 4 May 2013 11:59:19 +0000 (13:59 +0200)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Sat, 4 May 2013 11:59:19 +0000 (13:59 +0200)
* t/preproc-c-compile.sh (Makefile.am): Use "test foo = bar", not the
bash-specific "test foo == bar".

Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
t/preproc-c-compile.sh

index 79e9325..1b8af0f 100755 (executable)
@@ -68,7 +68,7 @@ bin_PROGRAMS =
 include $(top_srcdir)/zot/local.mk
 
 test:
-       test '$(bin_PROGRAMS)' == mumble$(EXEEXT)
+       test '$(bin_PROGRAMS)' = mumble$(EXEEXT)
        test '$(mumble_SOURCES)' = one.c
 check-local: test
 END