svn commit: r403002 - head/emulators/fmsx

Raphael Kubo da Costa rakuco at FreeBSD.org
Fri Dec 4 16:50:30 UTC 2015


Author: rakuco
Date: Fri Dec  4 16:50:29 2015
New Revision: 403002
URL: https://svnweb.freebsd.org/changeset/ports/403002

Log:
  Fix do-install after r393228.
  
  ${WRKSRC}/fmsx does not exist, ${WRKDIR} is the right variable.

Modified:
  head/emulators/fmsx/Makefile

Modified: head/emulators/fmsx/Makefile
==============================================================================
--- head/emulators/fmsx/Makefile	Fri Dec  4 16:42:29 2015	(r403001)
+++ head/emulators/fmsx/Makefile	Fri Dec  4 16:50:29 2015	(r403002)
@@ -39,7 +39,7 @@ BPP24_CFLAGS=	-DBPP24
 BPP32_CFLAGS=	-DBPP32
 
 do-install:
-	${INSTALL_SCRIPT} ${WRKSRC}/fmsx ${STAGEDIR}${PREFIX}/bin
+	${INSTALL_SCRIPT} ${WRKDIR}/fmsx ${STAGEDIR}${PREFIX}/bin
 	${INSTALL_PROGRAM} ${WRKSRC}/fMSX/Unix/fmsx ${STAGEDIR}${PREFIX}/libexec/fmsx
 	@${MKDIR} ${STAGEDIR}${DATADIR}
 	${INSTALL_DATA} ${WRKSRC}/ROMs/*.FNT ${STAGEDIR}${DATADIR}


More information about the svn-ports-head mailing list