summaryrefslogtreecommitdiff
path: root/pkgtools/pkgdiff/files/patchdiff.pl
diff options
context:
space:
mode:
Diffstat (limited to 'pkgtools/pkgdiff/files/patchdiff.pl')
-rwxr-xr-xpkgtools/pkgdiff/files/patchdiff.pl10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgtools/pkgdiff/files/patchdiff.pl b/pkgtools/pkgdiff/files/patchdiff.pl
index 21e39b996a4..f71b6eb4cea 100755
--- a/pkgtools/pkgdiff/files/patchdiff.pl
+++ b/pkgtools/pkgdiff/files/patchdiff.pl
@@ -1,6 +1,6 @@
#!@PREFIX@/bin/perl
#
-# $NetBSD: patchdiff.pl,v 1.1.1.1 2000/06/28 01:42:42 wiz Exp $
+# $NetBSD: patchdiff.pl,v 1.2 2000/08/17 03:09:26 wiz Exp $
#
# patchdiff: compares a set of patches patch-aa, patch-ab, ... in
# $WRKDIR/.newpatches in the with another set in patches.
@@ -28,9 +28,11 @@ sub getfilename {
local *handle;
open(handle, $fname);
while (<handle>) {
- next unless m/^\+\+\+ ([^ ]*)/;
+ next unless m/^\+\+\+[ ]([^ ]*)/;
close(handle);
- return $1;
+ $_ = $1;
+ chomp();
+ return $_;
}
close(handle);
return undef;
@@ -46,7 +48,7 @@ sub putinhash {
chomp;
$temp=getfilename($_);
$$hash{$temp}=$_;
-# print "put in hash: $temp // $_";
+# print "put in hash: $temp // $_\n";
}
close(handle);
}