From 4ee322c4e2545d03494dbf565c6a4a51038a10e4 Mon Sep 17 00:00:00 2001 From: Thomas Klausner Date: Tue, 18 Oct 2022 17:48:49 +0200 Subject: Makefile.am: increase shell portability Use standard test(1) instead of bash's '[['. Signed-off-by: Thomas Klausner --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index dccbf16..42f44a8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -75,7 +75,7 @@ release-remove-old: $(RM) $(tar_gz) $(tar_xz) $(HASHFILES) $(gpg_file) ensure-prev: - @if [[ "$(PREV)" == "" ]]; then \ + @if [ "$(PREV)" = "" ]; then \ echo "" && \ echo "You must set the PREV variable on the make command line to" && \ echo "the last version." && \ -- cgit v1.2.1