geoff 2003/05/30 05:10:32
Modified: util getdiff.pl Log: add -u flag to cvs diff Submitted by: geoff Reviewed by: stas Revision Changes Path 1.2 +1 -1 modperl-2.0/util/getdiff.pl Index: getdiff.pl =================================================================== RCS file: /home/cvs/modperl-2.0/util/getdiff.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- getdiff.pl 13 Aug 2001 02:18:38 -0000 1.1 +++ getdiff.pl 30 May 2003 12:10:31 -0000 1.2 @@ -12,7 +12,7 @@ # patch -p0 < newtest.patch # cvs diff -my $o = `cvs diff`; +my $o = `cvs diff -u`; # strip '? filename' cvs lines for unknown files $o =~ s/^\?.*\n//gm;