diff options
author | Alexander Langer <alex@FreeBSD.org> | 2000-08-13 16:26:26 +0000 |
---|---|---|
committer | Alexander Langer <alex@FreeBSD.org> | 2000-08-13 16:26:26 +0000 |
commit | 574c0a60dec1f7e8312afcef885b1d74c0091152 (patch) | |
tree | 0718f1f59a88404a8e7edbeefa44bd6634785da2 /emulators/gsnes9x/Makefile | |
parent | bin/manpage changed names from empire(.6) to vms-empire(.6) (diff) |
PKGDIR is supposed to be read-only.
Use PLIST var instead.
Submitted by: bento
Notes
Notes:
svn path=/head/; revision=31617
Diffstat (limited to 'emulators/gsnes9x/Makefile')
-rw-r--r-- | emulators/gsnes9x/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/emulators/gsnes9x/Makefile b/emulators/gsnes9x/Makefile index 8c94b8539924..4926b77ecf1f 100644 --- a/emulators/gsnes9x/Makefile +++ b/emulators/gsnes9x/Makefile @@ -27,8 +27,8 @@ CONFIGURE_ARGS= --without-included-gettext \ --with-esd .if defined(NOPORTDOCS) -pre-install: - ${INSTALL_DATA} ${FILESDIR}/PLIST.nodocs ${PKGDIR}/PLIST + +PLIST= ${FILESDIR}/PLIST.nodocs do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/GSnes9x ${PREFIX}/bin @@ -43,8 +43,7 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/pixmaps/gsnes9x-icon.png \ ${PREFIX}/share/gnome/pixmaps .else -pre-install: - ${INSTALL_DATA} ${FILESDIR}/PLIST.docs ${PKGDIR}/PLIST +PLIST= ${FILESDIR}/PLIST.docs .endif .include <bsd.port.mk> |