2005-01-12 10:40:59 +00:00
|
|
|
#! /usr/bin/perl -w -I/home/eelco/nix/scripts
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use readmanifest;
|
|
|
|
|
|
|
|
for my $p (@ARGV) {
|
|
|
|
|
|
|
|
my %narFiles;
|
|
|
|
my %patches;
|
|
|
|
|
2011-04-06 09:16:22 +00:00
|
|
|
readManifest $p, \%narFiles, \%patches;
|
2005-01-12 10:40:59 +00:00
|
|
|
|
|
|
|
%patches = ();
|
|
|
|
|
2007-01-23 16:50:19 +00:00
|
|
|
writeManifest $p, \%narFiles, \%patches;
|
2005-01-12 10:40:59 +00:00
|
|
|
}
|