[Pkg-cli-common-commits] [SCM] cli-common branch, master, updated. debian/0.7-4-g60f3427

Mirco Bauer meebey at meebey.net
Thu Jan 7 10:46:41 UTC 2010


The following commit has been merged in the master branch:
commit 60f34272391fbacb7b647236fb86b00fef545854
Author: Mirco Bauer <meebey at meebey.net>
Date:   Thu Jan 7 11:46:23 2010 +0100

      * dh_clifixperms:
        + Only operate on files (not symlinks).

diff --git a/debian/changelog b/debian/changelog
index 4f3a24d..4151a3f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,12 @@
-cli-common (0.7.1) unstable; urgency=low
+cli-common (0.7.1) UNRELEASED; urgency=low
 
   * debian/control:
     + Updated Vcs-* fields pointing to the git repository now.
     + Changed Section to cli-mono.
+  * dh_clifixperms:
+    + Only operate on files (not symlinks).
 
- -- Mirco Bauer <meebey at debian.org>  Wed, 06 Jan 2010 11:22:31 +0100
+ -- Mirco Bauer <meebey at debian.org>  Thu, 07 Jan 2010 11:45:29 +0100
 
 cli-common (0.7) unstable; urgency=low
 
diff --git a/dh_clifixperms b/dh_clifixperms
index 36cced9..f6c0051 100755
--- a/dh_clifixperms
+++ b/dh_clifixperms
@@ -49,10 +49,10 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
 	# Fix the permissions of various CLI-based files
 	for my $ext (qw(dll mdb cs config aspx))
 	{
-	    complex_doit("find $tmp $find_options -name \"*.$ext\" -print0",
+	    complex_doit("find $tmp $find_options -name \"*.$ext\" -type f -print0",
 			 "2>/dev/null | xargs -0r chmod 0644");
 	}
-	complex_doit("find $tmp $find_options -name \"*.exe\" -print0",
+	complex_doit("find $tmp $find_options -name \"*.exe\" -type f -print0",
 		     "2>/dev/null | xargs -0r chmod 0755");
 }
 

-- 
cli-common



More information about the Pkg-cli-common-commits mailing list