svn commit: r540974 - head/net/lualdap

Li-Wen Hsu lwhsu at FreeBSD.org
Wed Jul 1 16:10:43 UTC 2020


Author: lwhsu
Date: Wed Jul  1 16:10:42 2020
New Revision: 540974
URL: https://svnweb.freebsd.org/changeset/ports/540974

Log:
  Put the quotes around ${CC} back
  
  Dropping these could break thigs if $CC has more than one word
  
  Reported by:	danfe

Modified:
  head/net/lualdap/Makefile

Modified: head/net/lualdap/Makefile
==============================================================================
--- head/net/lualdap/Makefile	Wed Jul  1 15:50:36 2020	(r540973)
+++ head/net/lualdap/Makefile	Wed Jul  1 16:10:42 2020	(r540974)
@@ -18,7 +18,7 @@ GH_TAGNAME=	v${PORTVERSION}
 
 MAKE_ARGS+=	CPPFLAGS="-I${LOCALBASE}/include -I${LUA_INCDIR}" \
 		LDFLAGS="-L${LOCALBASE}/lib" \
-		CC=${CC}
+		CC="${CC}"
 
 ALL_TARGET=
 


More information about the svn-ports-all mailing list