]> git.donarmstrong.com Git - debhelper.git/commitdiff
r76: Initial Import
authorjoey <joey>
Tue, 17 Aug 1999 04:49:12 +0000 (04:49 +0000)
committerjoey <joey>
Tue, 17 Aug 1999 04:49:12 +0000 (04:49 +0000)
debian/changelog
dh_fixperms

index 1ee3825253b8676888c887a2cf81d9772a184c36..de0c2d9ec8e8e3eb8a0bdd4c1b0fe5ed6cc19bb6 100644 (file)
@@ -1,3 +1,12 @@
+debhelper (0.78) frozen unstable; urgency=low
+
+  * More spelling fixes from Christian T. Steigies. (I ignored the spelling
+    fixes to the changelog, though - too many, and a changelog isn't meant
+    to be changed after the fact :-)
+  * dh_fixperms: remove execute bits from .la files genrated by libtool.
+
+ -- Joey Hess <joeyh@master.debian.org>  Mon, 30 Mar 1998 12:44:42 -0800
+
 debhelper (0.77) frozen unstable; urgency=low
 
   * Fixed a nasty bug in dh_makeshlibs when it was called with -V, but with
index 9bd452fb8cb424a35154641eb7210d3bf37deca8..d34ffd232fde67e40cc50ac840214b92f9709333 100755 (executable)
@@ -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