diff options
author | Jose Alonso Cardenas Marquez <acm@FreeBSD.org> | 2007-03-24 12:26:14 +0000 |
---|---|---|
committer | Jose Alonso Cardenas Marquez <acm@FreeBSD.org> | 2007-03-24 12:26:14 +0000 |
commit | 5ee4cbd5f7515c90fe95f969510c819ea412980a (patch) | |
tree | 8461db6054e13c5edb22dcf2ee9baf18a2170696 /emulators/snes9x | |
parent | 173bf3ba0ea2b7d90449d804682ce1458375039e (diff) |
Notes
Diffstat (limited to 'emulators/snes9x')
-rw-r--r-- | emulators/snes9x/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/emulators/snes9x/Makefile b/emulators/snes9x/Makefile index 48daf1806b1a..64f05b80f197 100644 --- a/emulators/snes9x/Makefile +++ b/emulators/snes9x/Makefile @@ -74,6 +74,9 @@ CONFIGURE_ARGS+= --without-mmx .if defined(WITH_OPENGL) USE_GL= yes CONFIGURE_ARGS+= --with-opengl +SNES9X_BIN= osnes9x +.else +SNES9X_BIN= snes9x .endif .if !defined(WITHOUT_SCREENSHOT) @@ -107,7 +110,7 @@ do-install: .endfor ${INSTALL_DATA} ${WRKSRC}/unix/docs/readme_unix.txt ${DOCSDIR}/README .endif - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/${SNES9X_BIN} ${PREFIX}/bin/${PORTNAME} post-install: @${CAT} ${PKGMESSAGE} |