svn commit: r496998 - head/graphics/goxel

Mark Linimon linimon at FreeBSD.org
Thu Mar 28 00:35:59 UTC 2019


Author: linimon
Date: Thu Mar 28 00:35:58 2019
New Revision: 496998
URL: https://svnweb.freebsd.org/changeset/ports/496998

Log:
  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)

Modified:
  head/graphics/goxel/Makefile

Modified: head/graphics/goxel/Makefile
==============================================================================
--- head/graphics/goxel/Makefile	Thu Mar 28 00:28:52 2019	(r496997)
+++ head/graphics/goxel/Makefile	Thu Mar 28 00:35:58 2019	(r496998)
@@ -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
 


More information about the svn-ports-head mailing list