[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
master 8c316ba8da: ; * Makefile.in: Fix bashism.
From: |
Gregory Heytings |
Subject: |
master 8c316ba8da: ; * Makefile.in: Fix bashism. |
Date: |
Tue, 20 Sep 2022 05:20:59 -0400 (EDT) |
branch: master
commit 8c316ba8dac54360afff12c3f09522df9f6e1f1f
Author: Gregory Heytings <gregory@heytings.org>
Commit: Gregory Heytings <gregory@heytings.org>
; * Makefile.in: Fix bashism.
---
Makefile.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.in b/Makefile.in
index 1cc695482d..c841804757 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -417,7 +417,7 @@ sanity-check:
@v=$$(src/emacs${EXEEXT} --batch --eval \
'(progn (defun f (n) (if (= 0 n) 1 (* n (f (- n 1))))) (princ (f
10)))' \
2> /dev/null); \
- [ "X$$v" == "X3628800" ] && exit 0; \
+ [ "X$$v" = "X3628800" ] && exit 0; \
echo; \
echo " \"make ${make-target}\" succeeded, but Emacs is not
functional."; \
cat Makefile | \
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- master 8c316ba8da: ; * Makefile.in: Fix bashism.,
Gregory Heytings <=