Date: Fri, 12 Jul 2019 21:01:50 +0000 (UTC) From: Niclas Zeising <zeising@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r506490 - head/graphics/libdrm Message-ID: <201907122101.x6CL1ogP016089@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: zeising Date: Fri Jul 12 21:01:50 2019 New Revision: 506490 URL: https://svnweb.freebsd.org/changeset/ports/506490 Log: graphics/libdrm: Fix check for arm and powerpc Fix the theck for arm and powerpc in graphics/libdrm Makefile. Instead of checking for specific powerpc or arm versions, just use a pattern check for powerpc* and arm* respectively. This is part of a bigger sweep to consolodate this throughout the ports tree. PR: 239162 Submitted by: linimon Modified: head/graphics/libdrm/Makefile Modified: head/graphics/libdrm/Makefile ============================================================================== --- head/graphics/libdrm/Makefile Fri Jul 12 20:02:08 2019 (r506489) +++ head/graphics/libdrm/Makefile Fri Jul 12 21:01:50 2019 (r506490) @@ -44,7 +44,7 @@ PLIST_SUB+= ARM_DRIVERS="@comment " PLIST_SUB+= INTEL_DRIVER="" PLIST_SUB+= NOUVEAU_DRIVER="" PLIST_SUB+= RADEON_DRIVERS="" -.elif ${ARCH} == powerpc || ${ARCH} == powerpc64 +.elif ${ARCH:Mpowerpc*} PLIST_SUB+= ARM_DRIVERS="@comment " PLIST_SUB+= INTEL_DRIVER="@comment " PLIST_SUB+= NOUVEAU_DRIVER="" @@ -54,7 +54,7 @@ PLIST_SUB+= ARM_DRIVERS="" PLIST_SUB+= INTEL_DRIVER="@comment " PLIST_SUB+= NOUVEAU_DRIVER="" PLIST_SUB+= RADEON_DRIVERS="" -.elif ${ARCH} == armv6 || ${ARCH} == armv7 +.elif ${ARCH:Marm*} PLIST_SUB+= ARM_DRIVERS="" PLIST_SUB+= INTEL_DRIVER="@comment " PLIST_SUB+= NOUVEAU_DRIVER="@comment "
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201907122101.x6CL1ogP016089>