Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 31 May 2013 19:59:21 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r319541 - in head: devel/asdlgen games/quake3
Message-ID:  <201305311959.r4VJxLmF040146@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201305311959.r4VJxLmF040146>