]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
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 79e9325edc3a73dee9f512b1c1faae98d4ecedb8..1b8af0f29935fe03adb8a02584fad6331781d3c3 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