+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
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