svn commit: r513795 - head/lang/python27

Mark Linimon linimon at FreeBSD.org
Fri Oct 4 22:46:21 UTC 2019


Author: linimon
Date: Fri Oct  4 22:46:20 2019
New Revision: 513795
URL: https://svnweb.freebsd.org/changeset/ports/513795

Log:
  In various places in the ports tree, tests against ARCH are iterated
  one-by-one when a pattern test would be more robust.
  
  This consolidates the tests for 64-bit functionality.
  
  PR:		239163
  Approved by:	sunpoet (python, maintainer)

Modified:
  head/lang/python27/Makefile

Modified: head/lang/python27/Makefile
==============================================================================
--- head/lang/python27/Makefile	Fri Oct  4 22:43:46 2019	(r513794)
+++ head/lang/python27/Makefile	Fri Oct  4 22:46:20 2019	(r513795)
@@ -88,7 +88,7 @@ PLIST_SUB+=	X86_ONLY=""
 PLIST_SUB+=	X86_ONLY="@comment "
 .endif
 
-.if ${ARCH} == aarch64 || ${ARCH} == amd64 || ${ARCH} == mips64 || ${ARCH} == powerpc64 || ${ARCH} == sparc64
+.if ${ARCH:M*64*}
 PLIST_SUB+=	32BIT_ONLY="@comment "
 .else
 PLIST_SUB+=	32BIT_ONLY=""


More information about the svn-ports-head mailing list