diff options
author | Pawel Pekala <pawel@FreeBSD.org> | 2016-01-07 16:48:13 +0000 |
---|---|---|
committer | Pawel Pekala <pawel@FreeBSD.org> | 2016-01-07 16:48:13 +0000 |
commit | eab54a0a9e5f17830046ffb382458671603fd4b0 (patch) | |
tree | 03b48d5526bee863069b90bf1269f5df77ed143a | |
parent | Fix building man page (diff) |
Remove x-generate-plist target using deprecated @dirrm, our make makeplist
generates proper plists now.
PR: 205970
Submitted by: myself
Approved by: maintainer
-rw-r--r-- | mail/roundcube-sauserprefs/Makefile | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/mail/roundcube-sauserprefs/Makefile b/mail/roundcube-sauserprefs/Makefile index 7307aa4fa0c9..9547cee45eef 100644 --- a/mail/roundcube-sauserprefs/Makefile +++ b/mail/roundcube-sauserprefs/Makefile @@ -22,15 +22,6 @@ NO_ARCH= yes WWWDIR= ${PREFIX}/www/roundcube/plugins/sauserprefs -# This target is only meant to be used by the port maintainer. -x-generate-plist: build - cd ${WRKSRC}; \ - ${FIND} . ! -type d ! -name '*.orig' | ${SORT} | \ - ${SED} -e "s,^\.,%%WWWDIR%%," >${.CURDIR}/pkg-plist.tmp ; \ - ${FIND} . -type d | ${SORT} -r | ${SED} \ - -e "s,^\.$$,@dirrmtry %%WWWDIR%%," \ - -e "s,^\.,@dirrm %%WWWDIR%%," >>${.CURDIR}/pkg-plist.tmp - do-install: ${MKDIR} ${STAGEDIR}/${WWWDIR} cd ${WRKSRC} && ${PAX} -r -w . ${STAGEDIR}/${WWWDIR} |