diff options
author | joey <joey> | 1999-08-17 04:49:12 +0000 |
---|---|---|
committer | joey <joey> | 1999-08-17 04:49:12 +0000 |
commit | 8e17695ae11d7baea80c69ff01b7558500cedfd9 (patch) | |
tree | ab589a7ea130d2474e51809d869120dbb33bb56b /dh_fixperms | |
parent | 8a27e8edfd06c742fe3ff2aceda1588daf175527 (diff) | |
download | debhelper-8e17695ae11d7baea80c69ff01b7558500cedfd9.tar.gz |
r76: Initial Import
Diffstat (limited to 'dh_fixperms')
-rwxr-xr-x | dh_fixperms | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dh_fixperms b/dh_fixperms index 9bd452fb..d34ffd23 100755 --- a/dh_fixperms +++ b/dh_fixperms @@ -32,8 +32,8 @@ for PACKAGE in $DH_DOPACKAGES; do doit "chmod 644 $files" fi - # ..so are executable shared libraries. - files=`find $TMP -perm -5 -type f -name "*.so*" | tr "\n" " "` || true + # ..and so are executable shared libraries (and .la files from libtool) + files=`find $TMP -perm -5 -type f \( -name "*.so*" -or -name "*.la" \) | tr "\n" " "` || true if [ "$files" ]; then doit "chmod a-X $files" fi |