summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2010-03-29 07:17:22 +0200
committerDan McGee <dan@archlinux.org>2010-04-27 01:49:28 +0200
commit90aca75cb92c12419f2998cf54caa8ef5fe59f99 (patch)
tree4b4058b1abc9610753c6d7ca5c36ce03e9a74b9b
parent753599b5046392477449ed550cd99c41631145ed (diff)
downloadpacman-90aca75cb92c12419f2998cf54caa8ef5fe59f99.tar.gz
pacman-90aca75cb92c12419f2998cf54caa8ef5fe59f99.tar.xz
makepkg: BSD find compatibility fix
Signed-off-by: Allan McRae <allan@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r--scripts/makepkg.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
index ba7780fb..a2db90b3 100644
--- a/scripts/makepkg.sh.in
+++ b/scripts/makepkg.sh.in
@@ -844,7 +844,7 @@ tidy_install() {
if [[ $(check_option strip) = y && -n ${STRIP_DIRS[*]} ]]; then
msg2 "$(gettext "Stripping unneeded symbols from binaries and libraries...")"
local binary
- find ${STRIP_DIRS[@]} -type f -writable 2>/dev/null | while read binary ; do
+ find ${STRIP_DIRS[@]} -type f -perm -u+w 2>/dev/null | while read binary ; do
case "$(file -biz "$binary")" in
*compressed-encoding*) # Skip compressed binaries
;;