summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2010-01-26 14:29:31 +0100
committerDan McGee <dan@archlinux.org>2010-03-15 00:30:23 +0100
commita4e3fd18474186ac81acca91adecbb905aee3357 (patch)
tree98e1c8eed099b6d99977d658ac59f0509c00be65 /scripts
parentde5473c026ea1a8bf8fdb4218a6911b5d5e1f0b2 (diff)
downloadpacman-a4e3fd18474186ac81acca91adecbb905aee3357.tar.gz
pacman-a4e3fd18474186ac81acca91adecbb905aee3357.tar.xz
makepkg: only strip files that are writable
TODO: http://mailman.archlinux.org/pipermail/pacman-dev/2010-January/010390.html Signed-off-by: Allan McRae <allan@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'scripts')
-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 1d9be91a..5a3e502a 100644
--- a/scripts/makepkg.sh.in
+++ b/scripts/makepkg.sh.in
@@ -849,7 +849,7 @@ tidy_install() {
if [[ $(check_option strip) = y && -n ${STRIP_DIRS[*]} ]]; then
msg2 "$(gettext "Stripping debugging symbols from binaries and libraries...")"
local binary
- find ${STRIP_DIRS[@]} -type f 2>/dev/null | while read binary ; do
+ find ${STRIP_DIRS[@]} -type f -writable 2>/dev/null | while read binary ; do
case "$(file -biz "$binary")" in
*compressed-encoding*) # Skip compressed binaries
;;