svn commit: r433936 - head/x11/nvidia-driver

Koop Mast kwm at FreeBSD.org
Sun Feb 12 11:55:52 UTC 2017


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 at 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


More information about the svn-ports-all mailing list