Date: Sun, 12 Feb 2017 11:55:51 +0000 (UTC) From: Koop Mast <kwm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r433936 - head/x11/nvidia-driver Message-ID: <201702121155.v1CBtpRh031882@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kwm Date: Sun Feb 12 11:55:51 2017 New Revision: 433936 URL: https://svnweb.freebsd.org/changeset/ports/433936 Log: Unbreak the build of nvidia-driver-304, which I broke in r433892 [1] While here add += to the SUB_LIST lines so we don't accidently overwrite other SUB_LIST if they should be added later. Reported by: Walter Schwarzenfeld <w.schwarzenfeld@utanet.at> [1] Modified: head/x11/nvidia-driver/Makefile Modified: head/x11/nvidia-driver/Makefile ============================================================================== --- head/x11/nvidia-driver/Makefile Sun Feb 12 09:01:29 2017 (r433935) +++ head/x11/nvidia-driver/Makefile Sun Feb 12 11:55:51 2017 (r433936) @@ -58,9 +58,9 @@ NVVERSION= ${DISTVERSION} .endif .if ${NVVERSION} >= 331.013 -SUB_LIST= NVGL="" +SUB_LIST+= NVGL="" .else -SUB_LIST= NVGL="# " +SUB_LIST+= NVGL="\# " .endif .if ${NVVERSION} < 355.006
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702121155.v1CBtpRh031882>