diff options
author | gerald <gerald@FreeBSD.org> | 2018-01-26 18:43:50 +0800 |
---|---|---|
committer | gerald <gerald@FreeBSD.org> | 2018-01-26 18:43:50 +0800 |
commit | c9f29dcced582ba6b1246bb459e2ca1ede96685a (patch) | |
tree | db5be826b541f138766b7ca77b7942dbfd94be33 | |
parent | 419bf51bd02b8bfde5dfdf3aae2b7ced24ca5c89 (diff) | |
download | freebsd-ports-gnome-c9f29dcced582ba6b1246bb459e2ca1ede96685a.tar.gz freebsd-ports-gnome-c9f29dcced582ba6b1246bb459e2ca1ede96685a.tar.zst freebsd-ports-gnome-c9f29dcced582ba6b1246bb459e2ca1ede96685a.zip |
Limit the workaround for clang crashing to amd64.
PR: 224863
Reported by: jbeich
-rw-r--r-- | emulators/wine/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emulators/wine/Makefile b/emulators/wine/Makefile index 9d0003645417..fa97852f19fc 100644 --- a/emulators/wine/Makefile +++ b/emulators/wine/Makefile @@ -108,7 +108,7 @@ X11_LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ .include <bsd.port.pre.mk> # PR224863: clang 6.0.0 crashes -.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1200056 +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1200056 && ${ARCH} == amd64 USE_GCC= yes .endif |