From: Gregory Heytings Date: Tue, 20 Sep 2022 09:20:12 +0000 (+0200) Subject: ; * Makefile.in: Fix bashism. X-Git-Tag: emacs-29.0.90~1856^2~359 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8c316ba8dac54360afff12c3f09522df9f6e1f1f;p=emacs.git ; * Makefile.in: Fix bashism. --- diff --git a/Makefile.in b/Makefile.in index 1cc695482de..c8418047577 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 | \