From: joey Date: Fri, 26 Aug 2005 13:26:16 +0000 (+0000) Subject: r1781: releasing version 4.9.7 X-Git-Tag: 4.9.7 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=3c0aac23f554f41c57fe17d9143366ea908d60ec;p=debhelper.git r1781: releasing version 4.9.7 --- diff --git a/debian/changelog b/debian/changelog index 28d5e79..2f98b99 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +debhelper (4.9.7) unstable; urgency=low + + * dh_installdocs: Fix stupid and horrible typo. Closes: #325098 + + -- Joey Hess Fri, 26 Aug 2005 09:20:47 -0400 + debhelper (4.9.6) unstable; urgency=low * dh_installdocs: Install symlinks to in -x mode, same as in non exclude diff --git a/dh_installdocs b/dh_installdocs index 9c12d49..2ec9bda 100755 --- a/dh_installdocs +++ b/dh_installdocs @@ -133,7 +133,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { # Pity there's no cp --exclude .. my $pwd=`pwd`; chomp $pwd; - complex_doit("cd $doc/.. && find $dir_basename \\( -type f or -type l \\)$exclude -exec cp --parents -dp {} $pwd/$tmp/usr/share/doc/$package \\;"); + complex_doit("cd $doc/.. && find $dir_basename \\( -type f -or -type l \\)$exclude -exec cp --parents -dp {} $pwd/$tmp/usr/share/doc/$package \\;"); } else { doit("cp","-a",$doc,"$tmp/usr/share/doc/$package");