@@ -1,3 +1,8 @@
+2007-09-24 Guillem Jover <guillem@debian.org>
+
+ * scripts/dpkg-buildpackage.pl (signfile): Do not use absolute path
+ for 'rm'.
2007-09-24 Guillem Jover <guillem@debian.org>
* scripts/dpkg-buildpackage.pl (usage): Fix typo
@@ -311,7 +311,7 @@ sub signfile {
system('mv', '--', "../$file.asc", "../$file")
and subprocerr('mv');
} else {
- system('/bin/rm', '-f', "../$file.asc")
+ system('rm', '-f', "../$file.asc")
and subprocerr('rm -f');
}
print "\n";