diff options
author | alex <alex@FreeBSD.org> | 2000-08-14 00:26:26 +0800 |
---|---|---|
committer | alex <alex@FreeBSD.org> | 2000-08-14 00:26:26 +0800 |
commit | 6f6875864b85f912066787d8507f27df17337d05 (patch) | |
tree | a5a027bc4326bf1c175e9b6eac87145e99db0dfc /emulators | |
parent | f1496d2d11dd2f94001cf465976be9d12d1c9362 (diff) | |
download | freebsd-ports-graphics-6f6875864b85f912066787d8507f27df17337d05.tar.gz freebsd-ports-graphics-6f6875864b85f912066787d8507f27df17337d05.tar.zst freebsd-ports-graphics-6f6875864b85f912066787d8507f27df17337d05.zip |
PKGDIR is supposed to be read-only.
Use PLIST var instead.
Submitted by: bento
Diffstat (limited to 'emulators')
-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 8c94b853992..4926b77ecf1 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> |