summaryrefslogtreecommitdiff
path: root/multimedia
diff options
context:
space:
mode:
authorgutteridge <gutteridge@pkgsrc.org>2020-11-28 01:20:03 +0000
committergutteridge <gutteridge@pkgsrc.org>2020-11-28 01:20:03 +0000
commit0865d9ed91291d3b449914bf9e1ccdb2b720abd5 (patch)
tree5a58e4a2eb7eac7e8b16c33c8b0035769ce8c967 /multimedia
parent4eb10af57a8f60d4e498209067882b56f8162381 (diff)
downloadpkgsrc-0865d9ed91291d3b449914bf9e1ccdb2b720abd5.tar.gz
Remove superfluous specification characters from pax invocations
A bunch of packages had an extra "p" specification character passed to the pax -p option. One is enough. Committed to reduce the human parsing costs, should someone else need to examine this. (In my case because it seems recent Linux distros have changed such that some -p arguments can now cause an error to occur, where previously they were accepted.)
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/mplayer-share/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/multimedia/mplayer-share/Makefile b/multimedia/mplayer-share/Makefile
index e401382bfa4..6760943394f 100644
--- a/multimedia/mplayer-share/Makefile
+++ b/multimedia/mplayer-share/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.72 2020/08/18 17:58:10 leot Exp $
+# $NetBSD: Makefile,v 1.73 2020/11/28 01:20:03 gutteridge Exp $
.include "Makefile.common"
@@ -20,7 +20,7 @@ do-install:
${INSTALL_DATA} ${WRKSRC}/etc/codecs.conf ${DESTDIR}${PREFIX}/share/mplayer
${INSTALL_DATA} ${WRKSRC}/etc/input.conf ${DESTDIR}${PREFIX}/share/mplayer
(set -e; cd ${WRKSRC}/DOCS && \
- pax -rwpppm * ${DESTDIR}${PREFIX}/share/mplayer/DOCS); \
+ pax -rwppm * ${DESTDIR}${PREFIX}/share/mplayer/DOCS); \
${FIND} ${DESTDIR}${PREFIX}/share/mplayer/DOCS -type d -print | \
${XARGS} ${CHMOD} ${PKGDIRMODE}
${FIND} ${DESTDIR}${PREFIX}/share/mplayer/DOCS -type f -print | \