]> git.donarmstrong.com Git - debhelper.git/commitdiff
r140: Initial Import
authorjoey <joey>
Tue, 17 Aug 1999 05:04:00 +0000 (05:04 +0000)
committerjoey <joey>
Tue, 17 Aug 1999 05:04:00 +0000 (05:04 +0000)
debian/changelog
dh_movefiles

index 32baae863d1f4e71565e58e4b77dc24618379d93..05636c5d2eff4deb5e3e8cca45faacf31a7036b6 100644 (file)
@@ -1,3 +1,9 @@
+debhelper (1.2.6) unstable; urgency=low
+
+  * dh_movefiles: fixed non-integer comparison (#29476)
+
+ -- Joey Hess <joeyh@master.debian.org>  Sun, 15 Nov 1998 13:03:09 -0800
+
 debhelper (1.2.5) unstable; urgency=low
 
   * The perl conversion is complete.
index 5967ff543cbc24be202e49be80eb02f3417c90a3..52a7fe347fe3cf19e38a020916ad8f4fb60ca3ac 100755 (executable)
@@ -19,7 +19,7 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
        @tomove=();
 
         # debian/files has a different purpose, so ignore it.
-       if ( $files && $files != "debian/files" ) {
+       if ( $files && $files ne "debian/files" ) {
                @tomove=filearray($files);
        }