diff options
author | adamw <adamw@FreeBSD.org> | 2012-10-16 17:37:49 +0800 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2012-10-16 17:37:49 +0800 |
commit | 58c5e69df0f92231ee7c666d8e89d399e9582520 (patch) | |
tree | ced161989741235325246f8b3e0a772070bb7354 | |
parent | 6e136ab77e018e0a5b25909da3e4d19fe6e78775 (diff) | |
download | freebsd-ports-gnome-58c5e69df0f92231ee7c666d8e89d399e9582520.tar.gz freebsd-ports-gnome-58c5e69df0f92231ee7c666d8e89d399e9582520.tar.zst freebsd-ports-gnome-58c5e69df0f92231ee7c666d8e89d399e9582520.zip |
As in squirrelmail/Makefile, drop cp -R in favor of cpio.
No plist change here, but offers some permissions protection.
Feature safe: yes
-rw-r--r-- | mail/squirrelmail-translations/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/squirrelmail-translations/Makefile b/mail/squirrelmail-translations/Makefile index 70d45da166af..7563a4229c52 100644 --- a/mail/squirrelmail-translations/Makefile +++ b/mail/squirrelmail-translations/Makefile @@ -33,7 +33,7 @@ post-patch: do-install: ${MKDIR} ${SQUIRRELDIR} .for DIR in help images locale - ${CP} -rp ${WRKSRC}/${DIR} ${SQUIRRELDIR} + cd ${WRKSRC} && ${FIND} ${DIR} | ${CPIO} -pdmu --quiet ${SQUIRRELDIR} .endfor .include <bsd.port.mk> |