* Download and unpack Visual C++ 2005 Express Edition.

svn path=/nixpkgs/trunk/; revision=5383
This commit is contained in:
Eelco Dolstra
2006-06-05 19:26:11 +00:00
parent c40a94ad07
commit 588383905a
5 changed files with 682 additions and 6 deletions

View File

@@ -0,0 +1,22 @@
#! /usr/bin/perl -w
use strict;
my %map;
open LIST1, "<$ARGV[0]" or die;
while (<LIST1>) {
/^(\S+)\s+(.*)$/;
$map{$1} = $2;
}
open LIST1, "<$ARGV[1]" or die;
while (<LIST1>) {
/^(\S+)\s+(.*)$/;
if (!defined $map{$1}) {
print STDERR "missing file: $2\n";
next;
}
print "$2\n";
print "$map{$1}\n";
}