svn commit: r415786 - head/games/libretro-cores

Mathieu Arnold mat at FreeBSD.org
Tue May 24 13:17:38 UTC 2016


Author: mat
Date: Tue May 24 13:17:36 2016
New Revision: 415786
URL: https://svnweb.freebsd.org/changeset/ports/415786

Log:
  Fix my previous fix.
  
  Reported by:	marino
  Sponsored by:	Absolight

Modified:
  head/games/libretro-cores/Makefile

Modified: head/games/libretro-cores/Makefile
==============================================================================
--- head/games/libretro-cores/Makefile	Tue May 24 13:15:40 2016	(r415785)
+++ head/games/libretro-cores/Makefile	Tue May 24 13:17:36 2016	(r415786)
@@ -118,8 +118,8 @@ post-patch:
 
 do-build:
 	@for dir in ${CORE_DIRS}; do \
-	  ${ECHO_MSG} "===>  Building for ${PKGNAME}: core ${dir} ($$(date))"; \
-	  cd ${WRKSRC}/${dir}; \
+	  ${ECHO_MSG} "===>  Building for ${PKGNAME}: core $${dir} ($$(date))"; \
+	  cd ${WRKSRC}/$${dir}; \
 	  if [ -f Makefile.freebsd ]; then \
 	    ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} Makefile.freebsd ${_MAKE_JOBS} ${MAKE_ARGS}; \
 	  elif [ -f Makefile.libretro ]; then \
@@ -132,7 +132,7 @@ do-build:
 do-install:
 	@${MKDIR} ${STAGEDIR}/${PREFIX}/libexec/libretro;
 	@for dir in ${CORE_DIRS}; do \
-	  ${INSTALL_LIB} $$(find ${WRKSRC}/${dir}/ -name "*.so") ${STAGEDIR}/${PREFIX}/libexec/libretro); \
+	  ${INSTALL_LIB} $$(find ${WRKSRC}/$${dir}/ -name "*.so") ${STAGEDIR}/${PREFIX}/libexec/libretro; \
 	done;
 
 print-upstream-revisions:


More information about the svn-ports-head mailing list