diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2021-10-22 11:42:15 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2021-10-22 11:42:15 +0000 |
commit | 828299c91a3ae2f5f1d46c240f5304deb85abb98 (patch) | |
tree | c9891e933797ba0620333074285ef77809ba9017 | |
parent | e3e2bdea3f19925fb18d1b18fe697da251f57643 (diff) |
editors/emacs-devel: fix build on powerpc64*
Building with clang randomly crashes:
Select coding system (default raw-text): Debugger entered--Lisp error: (end-of-file "Error reading from stdin")
-rw-r--r-- | editors/emacs-devel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/emacs-devel/Makefile b/editors/emacs-devel/Makefile index e0cb65197276..a2b3112691f8 100644 --- a/editors/emacs-devel/Makefile +++ b/editors/emacs-devel/Makefile @@ -213,7 +213,7 @@ XWIDGETS_CONFIGURE_WITH= xwidgets _GCC_PORT!= ${BSDMAKE} -V_GCC_PORT USE_GCC=11+ _GCC_PORT_CHOSEN=yes .endif -.if ${ARCH} == powerpc64le +.if ${ARCH:Mpowerpc64*} USE_GCC= yes .endif |