Changeset 20074 for branches/vendor/third/perl/Porting/apply
- Timestamp:
- 02/09/04 14:10:55 (6 years ago)
- Files:
-
- 1 modified
-
branches/vendor/third/perl/Porting/apply (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/vendor/third/perl/Porting/apply
r18449 r20074 2 2 my $file = pop(@ARGV); 3 3 my %meta; 4 $ENV{'P4PORT'} = 'bactrian:1667';5 $ENV{'P4CLIENT'} = 'camel-linux';4 $ENV{'P4PORT'} ||= 'bactrian:1667'; 5 $ENV{'P4CLIENT'} ||= 'ni-s'; 6 6 open(FILE,$file) || die "Cannot open $file:$!"; 7 7 while (<FILE>) … … 18 18 foreach (@results) 19 19 { 20 if (/ patching\s+file\s*(.*?)\s*$/)20 if (/[Pp]atching\s+file\s*(\S+)/) 21 21 { 22 22 push(@edit,$1); … … 70 70 } 71 71 } 72
