]> git.donarmstrong.com Git - debhelper.git/blobdiff - dh_installdocs
Fix typo in French translation, about debian/package.README.Debian files.
[debhelper.git] / dh_installdocs
index 3707a1366830263862c66293b4cc02bbae4685dd..c20095c0d9f58daaf39f992a278d7932832a1976 100755 (executable)
@@ -90,7 +90,7 @@ Note that dh_installdocs will happily copy entire directory hierarchies if
 you ask it to (similar to cp -a). If it is asked to install a
 directory, it will install the complete contents of the directory.
 
-Note that this command is not idempotent. "dh_clean B<-k>" should be called
+Note that this command is not idempotent. L<dh_prep(1)> should be called
 between invocations of this command. Otherwise, it may cause multiple
 instances of the same text to be added to maintainer scripts.
 
@@ -137,8 +137,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
                                my $dir = ($basename eq '.') ? $doc : "$doc/..";
                                my $pwd=`pwd`;
                                chomp $pwd;
-                               $exclude='\\( -type f -or -type l \\)'.$exclude;
-                               complex_doit("cd '$dir' && find '$basename' $exclude -exec cp --parents -dp {} $pwd/$tmp/usr/share/doc/$package \\;");
+                               complex_doit("cd '$dir' && find '$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");