]> git.donarmstrong.com Git - debhelper.git/commitdiff
releasing version 6.0.9 6.0.9
authorJoey Hess <joey@kodama.kitenet.net>
Sun, 16 Mar 2008 17:55:39 +0000 (13:55 -0400)
committerJoey Hess <joey@kodama.kitenet.net>
Sun, 16 Mar 2008 17:55:39 +0000 (13:55 -0400)
debian/changelog
dh_installman

index 8b673ead21713a065b8d222247f066eead55d5c5..c2fc479aeff2de60f876b2e0f4031bd986101acb 100644 (file)
@@ -1,3 +1,9 @@
+debhelper (6.0.9) unstable; urgency=low
+
+  * dh_installman: Don't recode symlinks. Closes: #471196
+
+ -- Joey Hess <joeyh@debian.org>  Sun, 16 Mar 2008 13:53:39 -0400
+
 debhelper (6.0.8) unstable; urgency=low
 
   * dh_installman: Convert all man pages in the build directory to utf-8, not
index 78e82ea22ebdfc5b901a4424e6678b4be9d03e0c..dbe25dd235b2688de5a61f7116ef016063a440f3 100755 (executable)
@@ -196,7 +196,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
        foreach my $dir (qw{usr/share/man usr/X11R6/man}) {
                if (-e "$tmp/$dir") {
                        find(sub {
-                               return unless -f $_;
+                               return if ! -f $_ || -l $_;
                                complex_doit "man --recode UTF-8 ./\Q$_\E > \Q$_.new\E";
                                doit "chmod",644,"$_.new";
                                doit "mv","-f","$_.new",$_;