svn commit: r325802 - head/games/openarena-data

John Marino marino at FreeBSD.org
Sat Aug 31 12:18:39 UTC 2013


Author: marino
Date: Sat Aug 31 12:18:39 2013
New Revision: 325802
URL: http://svnweb.freebsd.org/changeset/ports/325802

Log:
  games/openarena-data: Fix relative include path
  
  All relative include paths should start with .CURDIR

Modified:
  head/games/openarena-data/Makefile

Modified: head/games/openarena-data/Makefile
==============================================================================
--- head/games/openarena-data/Makefile	Sat Aug 31 12:02:46 2013	(r325801)
+++ head/games/openarena-data/Makefile	Sat Aug 31 12:18:39 2013	(r325802)
@@ -21,7 +21,7 @@ FETCH_ARGS=
 OA_DATA=	${PKGNAMEPREFIX}${OA_DATA_VER}.zip
 OA_DATA_VER=	0.8.8
 
-.include "../openarena/Makefile.include"
+.include "${.CURDIR}/../openarena/Makefile.include"
 
 do-install:
 	${MKDIR} ${DATADIR}


More information about the svn-ports-head mailing list