Date: Wed, 21 Nov 2018 13:50:56 +0000 (UTC) From: Mathieu Arnold <mat@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r485515 - head/graphics/drm-devel-kmod Message-ID: <201811211350.wALDouDq047164@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mat Date: Wed Nov 21 13:50:55 2018 New Revision: 485515 URL: https://svnweb.freebsd.org/changeset/ports/485515 Log: Always append to PLIST_SUB after an include. Modified: head/graphics/drm-devel-kmod/Makefile (contents, props changed) Modified: head/graphics/drm-devel-kmod/Makefile ============================================================================== --- head/graphics/drm-devel-kmod/Makefile Wed Nov 21 13:50:52 2018 (r485514) +++ head/graphics/drm-devel-kmod/Makefile Wed Nov 21 13:50:55 2018 (r485515) @@ -37,22 +37,22 @@ IGNORE= not supported on anything but FreeBSD (missin .endif .if ${ARCH} == "amd64" -PLIST_SUB= AMDGPU="" +PLIST_SUB+= AMDGPU="" PLIST_SUB+= AMDKFD="" PLIST_SUB+= I915="" PLIST_SUB+= VMWGFX="" .elif ${ARCH} == "i386" -PLIST_SUB= AMDGPU="@comment " +PLIST_SUB+= AMDGPU="@comment " PLIST_SUB+= AMDKFD="@comment " PLIST_SUB+= I915="" PLIST_SUB+= VMWGFX="" .elif ${ARCH} == "powerpc64" -PLIST_SUB= AMDGPU="" +PLIST_SUB+= AMDGPU="" PLIST_SUB+= AMDKFD="@comment " PLIST_SUB+= I915="@comment " PLIST_SUB+= VMWGFX="@comment " .else -PLIST_SUB= AMDGPU="@comment " +PLIST_SUB+= AMDGPU="@comment " PLIST_SUB+= AMDKFD="@comment " PLIST_SUB+= I915="@comment " PLIST_SUB+= VMWGFX="@comment "
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811211350.wALDouDq047164>