diff options
author | edwin <edwin@FreeBSD.org> | 2014-05-14 05:13:31 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2014-05-14 05:13:31 +0800 |
commit | 76b4c9dc218dd8243b059cdea5a10537a715d826 (patch) | |
tree | 52bec4811a776bd75c8c2db38676b1c835be3a10 /lang | |
parent | 8f573c279ed81ad8a7d97a98905e99262bd0ef48 (diff) | |
download | freebsd-ports-gnome-76b4c9dc218dd8243b059cdea5a10537a715d826.tar.gz freebsd-ports-gnome-76b4c9dc218dd8243b059cdea5a10537a715d826.tar.zst freebsd-ports-gnome-76b4c9dc218dd8243b059cdea5a10537a715d826.zip |
Fix stagification
Diffstat (limited to 'lang')
-rw-r--r-- | lang/php_doc/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lang/php_doc/Makefile b/lang/php_doc/Makefile index d1488f85073b..1fdb2763f07b 100644 --- a/lang/php_doc/Makefile +++ b/lang/php_doc/Makefile @@ -40,7 +40,6 @@ PKGNAMESUFFIX= -${PHP_LANG} PLIST_SUB= PHPDOCDIR=${PHPDOCDIR:S/^${PREFIX}\///} .if ${PHP_LANG} == en -NO_STAGE= yes pre-fetch: @${ECHO} @${ECHO} "You may set PHP_LANG to" @@ -58,9 +57,9 @@ pre-install: do-install: @${MKDIR} ${PHPDOCDIR} - ${FIND} ${WRK_SRC} -type d | ${SED} -e "s,${WRK_SRC},${PHPDOCDIR}/," | ${XARGS} ${MKDIR} + ${FIND} ${WRK_SRC} -type d | ${SED} -e "s,${WRK_SRC},${STAGEDIR}${PHPDOCDIR}/," | ${XARGS} ${MKDIR} for f in `${FIND} ${WRK_SRC} -type f ! -name '.*' ! -name pkg-plist | ${SED} -e 's,${WRK_SRC},,'`; do \ - ${INSTALL_DATA} ${WRK_SRC}/$$f ${PHPDOCDIR}/$$f; \ + ${INSTALL_DATA} ${WRK_SRC}/$$f ${STAGEDIR}${PHPDOCDIR}/$$f; \ done # this is for the maintainer only |