From: Stefano Lattarini Date: Sat, 4 May 2013 11:59:19 +0000 (+0200) Subject: tests: remove bashism from a test X-Git-Tag: v1.13b~70 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9c813963e2f67cbf4604a1a1947c2ff779ecc8f0;p=thirdparty%2Fautomake.git tests: remove bashism from a test * t/preproc-c-compile.sh (Makefile.am): Use "test foo = bar", not the bash-specific "test foo == bar". Signed-off-by: Stefano Lattarini --- diff --git a/t/preproc-c-compile.sh b/t/preproc-c-compile.sh index 79e9325ed..1b8af0f29 100755 --- a/t/preproc-c-compile.sh +++ b/t/preproc-c-compile.sh @@ -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