You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by ge...@apache.org on 2003/05/30 14:10:32 UTC

cvs commit: modperl-2.0/util getdiff.pl

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;