emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#57949: closed (git head; unportable test(1) operator)


From: GNU bug Tracking System
Subject: bug#57949: closed (git head; unportable test(1) operator)
Date: Tue, 20 Sep 2022 09:23:02 +0000

Your message dated Tue, 20 Sep 2022 09:22:16 +0000
with message-id <2b1180d2e52a1983cda7@heytings.org>
and subject line Re: bug#57949: git head; unportable test(1) operator
has caused the debbugs.gnu.org bug report #57949,
regarding git head; unportable test(1) operator
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
57949: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=57949
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: git head; unportable test(1) operator Date: Tue, 20 Sep 2022 09:08:52 +0200
Hi!

In
https://github.com/emacs-mirror/emacs/commit/7c8a131984ab47349381975dead1712ae25ae2c6
Makefile.in started using "==" as test(1) comparison operator.

This is not portable, only bash supports it. POSIX mandates "=".

Please apply the following patch:

--- Makefile.in.orig    2022-09-19 23:17:34.000000000 +0000
+++ 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 | \

Thanks,
 Thomas



--- End Message ---
--- Begin Message --- Subject: Re: bug#57949: git head; unportable test(1) operator Date: Tue, 20 Sep 2022 09:22:16 +0000


Makefile.in started using "==" as test(1) comparison operator.

This is not portable, only bash supports it. POSIX mandates "=".


Thanks, fixed!


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]