diff options
author | antoine <antoine@FreeBSD.org> | 2013-10-06 17:08:22 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2013-10-06 17:08:22 +0800 |
commit | 5bc078229a06a951f4d71b318bf754df32366cc3 (patch) | |
tree | 3a4344aed0f48582db075ef7245780eb366c88d1 /emulators | |
parent | da517422c74bb827d65962a7ef6f6e0fcbe32259 (diff) | |
download | freebsd-ports-gnome-5bc078229a06a951f4d71b318bf754df32366cc3.tar.gz freebsd-ports-gnome-5bc078229a06a951f4d71b318bf754df32366cc3.tar.zst freebsd-ports-gnome-5bc078229a06a951f4d71b318bf754df32366cc3.zip |
Rework linux rpm plist generation/installation
Convert linux-f10-libasyncns to STAGEDIR (only user of AUTOMATIC_PLIST)
Approved by: portmgr (bapt)
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/linux_base-f10/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emulators/linux_base-f10/Makefile b/emulators/linux_base-f10/Makefile index aba8a9a49353..31b687cfa3c5 100644 --- a/emulators/linux_base-f10/Makefile +++ b/emulators/linux_base-f10/Makefile @@ -197,8 +197,8 @@ do-install: # # Do install without using linux rpm system # - @cd ${WRKSRC} && ${FIND} * -type d | ${GREP} -v "^stage" | ${PAX} -rw ${STAGEDIR}${PREFIX} - @cd ${WRKSRC} && ${FIND} * -path ./stage -prune ! -type d \ + @cd ${WRKSRC} && ${FIND} * ! -path "stage*" -type d -exec ${MKDIR} "${STAGEDIR}${PREFIX}/{}" \; + @cd ${WRKSRC} && ${FIND} * ! -path "stage/*" ! -type d \ | ${CPIO} -pm -R root:wheel ${STAGEDIR}${PREFIX} @${LN} -sf /var/tmp ${STAGEDIR}${PREFIX}/usr/tmp |