svn commit: r319541 - in head: devel/asdlgen games/quake3

Bryan Drewery bdrewery at FreeBSD.org
Fri May 31 19:59:22 UTC 2013


Author: bdrewery
Date: Fri May 31 19:59:21 2013
New Revision: 319541
URL: http://svnweb.freebsd.org/changeset/ports/319541

Log:
  Fix typos from options conversion

Modified:
  head/devel/asdlgen/Makefile
  head/games/quake3/Makefile

Modified: head/devel/asdlgen/Makefile
==============================================================================
--- head/devel/asdlgen/Makefile	Fri May 31 18:58:31 2013	(r319540)
+++ head/devel/asdlgen/Makefile	Fri May 31 19:59:21 2013	(r319541)
@@ -110,7 +110,7 @@ test-compile:	depends clean-depends buil
 
 .ifmake test-demo
 test-demo:	clean depends clean-depends build
-.if ${PORT_OPTIONS:MCII) && ${PORT_OPTIONS:MEXAMPLES}
+.if ${PORT_OPTIONS:MCII} && ${PORT_OPTIONS:MEXAMPLES}
 	cd ${WRKDIR}/${DEMODIR} && ${MAKE} ASDLGEN=${WRKSRC}/src/sml/asdlGen
 .else
 	@${ECHO_CMD} "You have to set the CII and EXAMPLES options"

Modified: head/games/quake3/Makefile
==============================================================================
--- head/games/quake3/Makefile	Fri May 31 18:58:31 2013	(r319540)
+++ head/games/quake3/Makefile	Fri May 31 19:59:21 2013	(r319541)
@@ -79,7 +79,7 @@ Q3BIN+=		q3ded
 PLIST_SUB+=	DEDICATED="@comment "
 .endif
 
-.if ${PORT_OPTIONS:MGAMELIBS) || !defined(HAVE_VM_COMPILED}
+.if ${PORT_OPTIONS:MGAMELIBS} || !defined(HAVE_VM_COMPILED)
 MAKE_ENV+=	GAMELIBS=YES
 PLIST_SUB+=	GAMELIBS=""
 .else
@@ -111,7 +111,7 @@ do-install:
 .for bin in ${Q3BIN}
 	${INSTALL_PROGRAM} ${BUILD_WRKSRC}/release/${bin} ${PREFIX}/bin
 .endfor
-.if ${PORT_OPTIONS:MGAMELIBS) || !defined(HAVE_VM_COMPILED}
+.if ${PORT_OPTIONS:MGAMELIBS} || !defined(HAVE_VM_COMPILED)
 .for dir in baseq3 missionpack
 	${MKDIR} ${LIBDIR}/${dir}
 	${INSTALL_PROGRAM} ${BUILD_WRKSRC}/release/${dir}/*.so ${LIBDIR}/${dir}


More information about the svn-ports-all mailing list