Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 28 Mar 2019 00:35:58 +0000 (UTC)
From:      Mark Linimon <linimon@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r496998 - head/graphics/goxel
Message-ID:  <201903280035.x2S0ZwHH048474@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903280035.x2S0ZwHH048474>