2005-01-12 11:40:59 +01: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 11:16:22 +02:00
|
|
|
readManifest $p, \%narFiles, \%patches;
|
2005-01-12 11:40:59 +01:00
|
|
|
|
|
|
|
%patches = ();
|
|
|
|
|
2007-01-23 17:50:19 +01:00
|
|
|
writeManifest $p, \%narFiles, \%patches;
|
2005-01-12 11:40:59 +01:00
|
|
|
}
|