Date: Sun, 27 Oct 2013 22:20:43 +0000 (UTC) From: William Grzybowski <wg@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r331809 - head/multimedia/vlc Message-ID: <201310272220.r9RMKhsP057343@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wg Date: Sun Oct 27 22:20:43 2013 New Revision: 331809 URL: http://svnweb.freebsd.org/changeset/ports/331809 Log: multimedia/vlc: fix package without pkgng - Fix package without pkgng PR: ports/183356 Submitted by: mandree Modified: head/multimedia/vlc/Makefile Modified: head/multimedia/vlc/Makefile ============================================================================== --- head/multimedia/vlc/Makefile Sun Oct 27 22:01:20 2013 (r331808) +++ head/multimedia/vlc/Makefile Sun Oct 27 22:20:43 2013 (r331809) @@ -720,10 +720,10 @@ post-install: @${FIND} ${STAGEDIR} -type d | ${SED} -e "s,${STAGEDIR},,g" \ | while read line; do \ ${GREP} -qw "^$${line}$$" ${WRKDIR}/.mtree || { \ - [ -n "$${line}" ] && ${ECHO_CMD} "@dirrmtry $${line}"; \ + [ -n "$${line}" ] && ${ECHO_CMD} "@unexec rmdir "%D/$${line}" >/dev/null 2>&1 || :"; \ }; \ done | ${SORT} -r | ${SED} \ - -e "s,${PREFIX}/,,g" | ${GREP} -v "^@dirrmtry share/licenses" >> ${TMPPLIST} || ${TRUE} + -e "s,${PREFIX}/,,g" | ${GREP} -v "^@unexec rmdir %D/share/licenses" >> ${TMPPLIST} || ${TRUE} .include <bsd.port.post.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310272220.r9RMKhsP057343>