]> err.no Git - dpkg/commitdiff
Add -follow (back) to find call in dpkg-scanpackages.
authorFrank Lichtenheld <djpig@debian.org>
Mon, 10 Apr 2006 22:38:57 +0000 (22:38 +0000)
committerFrank Lichtenheld <djpig@debian.org>
Mon, 10 Apr 2006 22:38:57 +0000 (22:38 +0000)
Closes: #358011
ChangeLog
debian/changelog
scripts/dpkg-scanpackages.pl

index 3ce12b9e338e4e2bead2fd7d2e3303056146dba9..d31bc278bcaab257f55f3e1ce5ffe2804980c02d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-04-11  Frank Lichtenheld  <djpig@debian.org>
+
+       * scripts/dpkg-scanpackages.pl: Add -follow
+       to @find_args. This was lost in a previous patch
+       apparently.
+
 2006-04-10  Miguel Figueiredo <elmig@debianpt.org>
 
        * pt.po: Updated Portuguese translation to 731t.
index 884a0ec38bd137285a34ad5696ea68d9ed180f31..5aa563b565750006138282a49d20b1e8b8c73bd3 100644 (file)
@@ -1,5 +1,9 @@
 dpkg (1.13.19~) UNRELEASED; urgency=low
 
+  [ Frank Lichtenheld ]
+  * Add -follow (back) to find call in dpkg-scanpackages.
+    Closes: #358011
+  
   [ Updated dpkg Translations ]
   * French (Christian Perrier)
   * Galician (Jacobo Tarrio)
index 2bc2b5a7f40475e6e06a885560d28913e9e10ce9..b6c8c4c1c437baf32342b4de6e686d159aa401d7 100755 (executable)
@@ -76,6 +76,7 @@ if ($options{arch}) {
 else {
      @find_args = ('-name',"*.$ext");
 }
+push @find_args, '-follow';
 my ($binarydir, $override, $pathprefix) = @ARGV;
 -d $binarydir or die "Binary dir $binarydir not found\n";
 -e $override or die "Override file $override not found\n";