Return-Path: Delivered-To: apmail-perl-modperl-cvs-archive@www.apache.org Received: (qmail 62720 invoked from network); 30 Dec 2004 22:40:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 30 Dec 2004 22:40:25 -0000 Received: (qmail 24059 invoked by uid 500); 30 Dec 2004 22:40:25 -0000 Delivered-To: apmail-perl-modperl-cvs-archive@perl.apache.org Received: (qmail 24035 invoked by uid 500); 30 Dec 2004 22:40:25 -0000 Mailing-List: contact modperl-cvs-help@perl.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: dev@perl.apache.org Delivered-To: mailing list modperl-cvs@perl.apache.org Received: (qmail 24021 invoked by uid 99); 30 Dec 2004 22:40:25 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Date: 30 Dec 2004 22:40:23 -0000 Message-ID: <20041230224023.62701.qmail@minotaur.apache.org> From: stas@apache.org To: modperl-cvs@perl.apache.org Subject: svn commit: r123737 - /perl/modperl/trunk/util/getdiff.pl MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Author: stas Date: Thu Dec 30 14:40:22 2004 New Revision: 123737 URL: http://svn.apache.org/viewcvs?view=rev&rev=123737 Log: cvs2svn Modified: perl/modperl/trunk/util/getdiff.pl Modified: perl/modperl/trunk/util/getdiff.pl Url: http://svn.apache.org/viewcvs/perl/modperl/trunk/util/getdiff.pl?view=diff&rev=123737&p1=perl/modperl/trunk/util/getdiff.pl&r1=123736&p2=perl/modperl/trunk/util/getdiff.pl&r2=123737 ============================================================================== --- perl/modperl/trunk/util/getdiff.pl (original) +++ perl/modperl/trunk/util/getdiff.pl Thu Dec 30 14:40:22 2004 @@ -1,6 +1,6 @@ #!/usr/bin/perl -w -# this script creates a diff against CVS +# this script creates a diff against SVN # and against /dev/null for all files in ARGV # and prints it to STDOUT # @@ -12,10 +12,7 @@ # patch -p0 < newtest.patch # cvs diff -my $o = `cvs diff -u`; - -# strip '? filename' cvs lines for unknown files -$o =~ s/^\?.*\n//gm; +my $o = `svn diff`; for (@ARGV) { $o .= "\n";