diff options
author | erwin <erwin@FreeBSD.org> | 2006-06-25 18:49:07 +0000 |
---|---|---|
committer | erwin <erwin@FreeBSD.org> | 2006-06-25 18:49:07 +0000 |
commit | 399ea873fce1f64afe3947fb0b2d845e6be603d6 (patch) | |
tree | bea2f470a81410cc1c284fc272b45a7106485b48 /emulators | |
parent | 2787db5b361c5fc2be24e02d638614cf162adba1 (diff) | |
download | FreeBSD-ports-399ea873fce1f64afe3947fb0b2d845e6be603d6.zip FreeBSD-ports-399ea873fce1f64afe3947fb0b2d845e6be603d6.tar.gz |
PLIST should be a full path as it otherwise will not be found if
.CURDIR is not the ports dir, e.g. in slave ports, so prefix with PKGDIR
Approved by: gabor (maintainer)
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/linux_dist-gentoo-stage2/Makefile | 2 | ||||
-rw-r--r-- | emulators/linux_dist-gentoo-stage3/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/emulators/linux_dist-gentoo-stage2/Makefile b/emulators/linux_dist-gentoo-stage2/Makefile index 9c4c481..7b701d0 100644 --- a/emulators/linux_dist-gentoo-stage2/Makefile +++ b/emulators/linux_dist-gentoo-stage2/Makefile @@ -26,7 +26,7 @@ GENTOO_OPTIMIZED?= x86 SUB_FILES+= pkg-message pkg-install pkg-deinstall SUB_LIST+= PREFIX_SUBDIR="${PREFIX_SUBDIR}" PLIST_SUB+= PREFIX_SUBDIR="${PREFIX_SUBDIR}" -PLIST= pkg-plist.${GENTOO_OPTIMIZED} +PLIST= ${PKGDIR}/pkg-plist.${GENTOO_OPTIMIZED} PKGMESSAGE= ${WRKDIR}/pkg-message PKGINSTALL= ${WRKDIR}/pkg-install PKGDEINSTALL= ${WRKDIR}/pkg-deinstall diff --git a/emulators/linux_dist-gentoo-stage3/Makefile b/emulators/linux_dist-gentoo-stage3/Makefile index 46b74a6..ae90dfd3 100644 --- a/emulators/linux_dist-gentoo-stage3/Makefile +++ b/emulators/linux_dist-gentoo-stage3/Makefile @@ -26,7 +26,7 @@ GENTOO_OPTIMIZED?= x86 SUB_FILES+= pkg-message pkg-install pkg-deinstall SUB_LIST+= PREFIX_SUBDIR="${PREFIX_SUBDIR}" PLIST_SUB+= PREFIX_SUBDIR="${PREFIX_SUBDIR}" -PLIST= pkg-plist.${GENTOO_OPTIMIZED} +PLIST= ${PKGDIR}/pkg-plist.${GENTOO_OPTIMIZED} PKGMESSAGE= ${WRKDIR}/pkg-message PKGINSTALL= ${WRKDIR}/pkg-install PKGDEINSTALL= ${WRKDIR}/pkg-deinstall |