From 9c813963e2f67cbf4604a1a1947c2ff779ecc8f0 Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Sat, 4 May 2013 13:59:19 +0200 Subject: [PATCH] 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 --- t/preproc-c-compile.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/preproc-c-compile.sh b/t/preproc-c-compile.sh index 79e9325..1b8af0f 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 -- 2.7.4