diff options
author | linimon <linimon@FreeBSD.org> | 2006-01-23 15:04:10 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2006-01-23 15:04:10 +0800 |
commit | 3b6dedf061c6e56b7c164dfcb80890f7eafd76ba (patch) | |
tree | 8938dfe1d642e6f310e73055e165811e4b10b0d0 /www/xaraya | |
parent | 225fbcc4fe37d05602ca410c041ea9ecb6c6bc55 (diff) | |
download | freebsd-ports-gnome-3b6dedf061c6e56b7c164dfcb80890f7eafd76ba.tar.gz freebsd-ports-gnome-3b6dedf061c6e56b7c164dfcb80890f7eafd76ba.tar.zst freebsd-ports-gnome-3b6dedf061c6e56b7c164dfcb80890f7eafd76ba.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 ,' | \ |