diff options
author | mat <mat@FreeBSD.org> | 2016-11-03 06:45:14 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2016-11-03 06:45:14 +0800 |
commit | d9ec328e16b795889ee8d72196228f00a0a3393a (patch) | |
tree | adf234bd1f2e56ae130e9960e1467b64c9fa0ed6 /net | |
parent | 759b32261f3c119f1062868d580795d19060e71b (diff) | |
download | freebsd-ports-gnome-d9ec328e16b795889ee8d72196228f00a0a3393a.tar.gz freebsd-ports-gnome-d9ec328e16b795889ee8d72196228f00a0a3393a.tar.zst freebsd-ports-gnome-d9ec328e16b795889ee8d72196228f00a0a3393a.zip |
Cleanup no longer needed CHMOD usage after r424898.
PR: 213743
Submitted by: mat
Exp-run by: antoine
Sponsored by: Absolight
Diffstat (limited to 'net')
-rw-r--r-- | net/abills/Makefile | 7 | ||||
-rw-r--r-- | net/binkd/Makefile | 1 | ||||
-rw-r--r-- | net/samba36/Makefile | 4 | ||||
-rw-r--r-- | net/ssspl/Makefile | 1 |
4 files changed, 2 insertions, 11 deletions
diff --git a/net/abills/Makefile b/net/abills/Makefile index 95c030522b9e..267e1c00e1c3 100644 --- a/net/abills/Makefile +++ b/net/abills/Makefile @@ -37,10 +37,7 @@ post-patch: do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/abills - @(${TAR} -C ${WRKSRC} --exclude "*.DS*" --exclude "*.bak" \ - --exclude "*.orig" -cf - . | ${TAR} -C ${STAGEDIR}${PREFIX}/abills \ - --unlink -xf -) - @${FIND} ${STAGEDIR}${PREFIX}/abills -type d | ${XARGS} ${CHMOD} a+rx - @${FIND} ${STAGEDIR}${PREFIX}/abills -type f | ${XARGS} ${CHMOD} ${SHAREMODE} + @cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/abills \ + '-not ( -name *\.DS* -o -name *\.bak -o -name *\.orig )' .include <bsd.port.mk> diff --git a/net/binkd/Makefile b/net/binkd/Makefile index 590e1b21ec35..07b0e2c2db8d 100644 --- a/net/binkd/Makefile +++ b/net/binkd/Makefile @@ -24,7 +24,6 @@ HTTPS_CONFIGURE_WITH= https pre-configure: @${RM} -r ${WRKSRC}/mkfls/unix/CVS @${CP} ${WRKSRC}/mkfls/unix/* ${WRKSRC}/ - @${CHMOD} a+x ${WRKSRC}/configure do-install: @${INSTALL_PROGRAM} ${WRKSRC}/binkd ${STAGEDIR}${PREFIX}/sbin diff --git a/net/samba36/Makefile b/net/samba36/Makefile index ec185e558501..5119d637b3ac 100644 --- a/net/samba36/Makefile +++ b/net/samba36/Makefile @@ -477,10 +477,6 @@ INSTALL_TARGET= installservers installbin installscripts installdat \ INSTALL_TARGET+=installswat .endif -pre-configure: - @${FIND} ${WRKDIR}/${DISTNAME} -type d | ${XARGS} ${CHMOD} u+w,a+rx - @${FIND} ${WRKDIR}/${DISTNAME} -type f | ${XARGS} ${CHMOD} u+w,a+r - post-configure: # It's in another port @${RM} ${WRKDIR}/${DISTNAME}/docs/htmldocs/manpages/libsmbclient.7.html diff --git a/net/ssspl/Makefile b/net/ssspl/Makefile index 9899bebeef2d..9b6100f74fa4 100644 --- a/net/ssspl/Makefile +++ b/net/ssspl/Makefile @@ -25,7 +25,6 @@ do-extract: @${CP} ${DISTDIR}/${DISTFILES} ${WRKSRC} do-install: - ${CHMOD} +x ${WRKSRC}/${DISTFILES} ${INSTALL_PROGRAM} ${WRKSRC}/${DISTFILES} ${STAGEDIR}${PREFIX}/sbin .include <bsd.port.mk> |