From 22222c371d113d75c48d0ef09e3168e16ced352b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucio=20Andr=C3=A9s=20Illanes=20Albornoz=20=28arab=2C=20vx?= =?UTF-8?q?p=29?= Date: Wed, 9 May 2018 17:15:43 +0000 Subject: subr/pkg_install.subr: correctly check for {absence,presence} of [ugo]+x. --- subr/pkg_install.subr | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'subr') diff --git a/subr/pkg_install.subr b/subr/pkg_install.subr index cfe38604..dd007abe 100644 --- a/subr/pkg_install.subr +++ b/subr/pkg_install.subr @@ -7,11 +7,10 @@ pkg_install() { find "${PKG_DESTDIR}" \ -type d -exec chmod 0755 {} \;; find "${PKG_DESTDIR}" \ - \( -perm -0400 \) -and \ - \( -not -perm /0100 \) \ + \( -not -perm /0111 \) \ -type f -exec chmod 0644 {} \;; find "${PKG_DESTDIR}" \ - -perm /0100 -type f -exec chmod 0755 {} \;; + -perm /0111 -type f -exec chmod 0755 {} \;; tar -C "${PKG_DESTDIR}" -cpf - . |\ tar -C "${PKG_PREFIX}" --overwrite -xpf -; if [ "${ARG_PACKAGE:-0}" -eq 1 ]; then -- cgit v1.2.3