summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Klausner <wiz@gatalith.at>2022-10-18 17:48:49 +0200
committerThomas Klausner <wiz@gatalith.at>2022-10-18 17:48:49 +0200
commit4ee322c4e2545d03494dbf565c6a4a51038a10e4 (patch)
tree2cf9bb6a0ce2d80e2b5aefe781388c86db0c8a57
parentb5b3243792fdfec3e6fabf08bc79f30bc3145742 (diff)
downloadpixman-4ee322c4e2545d03494dbf565c6a4a51038a10e4.tar.gz
Makefile.am: increase shell portability
Use standard test(1) instead of bash's '[['. Signed-off-by: Thomas Klausner <wiz@gatalith.at>
-rw-r--r--Makefile.am2
1 files changed, 1 insertions, 1 deletions
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." && \