Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 4 Oct 2019 22:46:20 +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: r513795 - head/lang/python27
Message-ID:  <201910042246.x94MkKSu000305@repo.freebsd.org>

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



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