diff options
author | Ulrich Müller <ulm@gentoo.org> | 2023-10-24 08:00:53 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2023-10-24 08:00:53 +0200 |
commit | ae7280e006b07dda3cc566aacb29b8ab28ba738f (patch) | |
tree | aedfc60a463e5359db91c7e8a4c3df7b503d675b /emacs | |
parent | 29.1: Regenerate Japanese dictionary (diff) | |
download | emacs-patches-ae7280e006b07dda3cc566aacb29b8ab28ba738f.tar.gz emacs-patches-ae7280e006b07dda3cc566aacb29b8ab28ba738f.tar.bz2 emacs-patches-ae7280e006b07dda3cc566aacb29b8ab28ba738f.zip |
29.1: Fix "make sanity-check"emacs-29.1-patches-5
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/29.1/06_all_sanity-check.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/emacs/29.1/06_all_sanity-check.patch b/emacs/29.1/06_all_sanity-check.patch new file mode 100644 index 0000000..6509cf7 --- /dev/null +++ b/emacs/29.1/06_all_sanity-check.patch @@ -0,0 +1,13 @@ +https://bugs.gentoo.org/916180 + +--- emacs-29.1/Makefile.in ++++ emacs-29.1/Makefile.in +@@ -417,7 +417,7 @@ + + sanity-check: + @[ -f .no-advice-on-failure ] && exit 0; true +- @v=$$(src/emacs${EXEEXT} --batch --eval \ ++ @v=$$(src/emacs${EXEEXT} --batch --quick --eval \ + '(progn (defun f (n) (if (= 0 n) 1 (* n (f (- n 1))))) (princ (f 10)))' \ + 2> /dev/null); \ + [ "X$$v" = "X3628800" ] && exit 0; \ |