diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2006-01-23 15:04:10 +0800 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2006-01-23 15:04:10 +0800 |
commit | f6159fbf7a88c697ec5fc8af9fa477c9d5f7c572 (patch) | |
tree | ba6e57d5890ba57f1e0b09e25c2ee9a110064d4d /www/xaraya | |
parent | 78a96568b81f92299739dd3446c5e01a6d0b04ec (diff) | |
download | freebsd-ports-gnome-f6159fbf7a88c697ec5fc8af9fa477c9d5f7c572.tar.gz freebsd-ports-gnome-f6159fbf7a88c697ec5fc8af9fa477c9d5f7c572.tar.zst freebsd-ports-gnome-f6159fbf7a88c697ec5fc8af9fa477c9d5f7c572.zip |
Revert last commit. It is not possible (yet) to have the dirrmtry usage
in the post-install target. Its usage must preceed generate-plist.
This problem needs to be revisited either in a rework of bsd.port.mk or
each of these Makefiles.
Hat: portmgr
Pointy hat: edwin`
Diffstat (limited to 'www/xaraya')
-rw-r--r-- | www/xaraya/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/xaraya/Makefile b/www/xaraya/Makefile index 85fa9e0605c4..eb4d3ebd1ce6 100644 --- a/www/xaraya/Makefile +++ b/www/xaraya/Makefile @@ -56,7 +56,7 @@ post-install: -or -name upgrade.php ')' | ${SED} -e \ 's,^${PREFIX}/\(.*\),@unexec rm -f %D/\1 >/dev/null 2>\&1 || true,' >> ${TMPPLIST} @${FIND} ${PREFIX}/${XARAYADIR} -type d -and -path "*var*" | \ - ${SED} -e 's,^${PREFIX}/\(.*\),@dirrmtry \1,' | \ + ${SED} -e 's,^${PREFIX}/\(.*\),@unexec rmdir %D/\1 >/dev/null 2>\&1 || true,' | \ ${SORT} -r >> ${TMPPLIST} @${FIND} ${PREFIX}/${XARAYADIR} -type d -and ! -path "*var*" | \ ${SED} -e 's,^${PREFIX}/,@dirrm ,' | \ |