diff options
author | linimon <linimon@FreeBSD.org> | 2019-03-28 08:35:58 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2019-03-28 08:35:58 +0800 |
commit | 96a2e81e2630b679b17064388927c61546cfabe5 (patch) | |
tree | 66496394497a9bec361c96721c1d56a2126f62b6 /graphics | |
parent | 0df40913a16476f8a3324c02fc8cac338bec8738 (diff) | |
download | freebsd-ports-gnome-96a2e81e2630b679b17064388927c61546cfabe5.tar.gz freebsd-ports-gnome-96a2e81e2630b679b17064388927c61546cfabe5.tar.zst freebsd-ports-gnome-96a2e81e2630b679b17064388927c61546cfabe5.zip |
Move the .if ${ARCH} != amd64 && ${ARCH} != i386 statement to avoid
creating an empty post-patch target for the x86 case.
Reported by: mat
Approved by: portmgr (tier-2 blanket)
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/goxel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/goxel/Makefile b/graphics/goxel/Makefile index 8a89c392c290..8c4643dd7448 100644 --- a/graphics/goxel/Makefile +++ b/graphics/goxel/Makefile @@ -28,8 +28,8 @@ DESKTOP_ENTRIES="Goxel" "${COMMENT}" "${PORTNAME}" \ .include <bsd.port.pre.mk> -post-patch: .if ${ARCH} != amd64 && ${ARCH} != i386 +post-patch: ${REINPLACE_CMD} -e 's/-msse2 //g' ${WRKSRC}/SConstruct .endif |