From 8e17695ae11d7baea80c69ff01b7558500cedfd9 Mon Sep 17 00:00:00 2001 From: joey Date: Tue, 17 Aug 1999 04:49:12 +0000 Subject: [PATCH] r76: Initial Import --- debian/changelog | 9 +++++++++ dh_fixperms | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 1ee3825..de0c2d9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 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 diff --git a/dh_fixperms b/dh_fixperms index 9bd452f..d34ffd2 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 -- 2.39.5