From bae75ca5a18edbb9fb959e2e48065a1987ffb61a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 23 Jan 2007 16:50:19 +0000 Subject: * New kind of manifest object: "localPath", which denotes that a store path can be created by copying it from another location in the file system. This is useful in the NixOS installation. --- scripts/remove-patches.pl | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'scripts/remove-patches.pl') diff --git a/scripts/remove-patches.pl b/scripts/remove-patches.pl index 75eb0ce778..1a94dfa164 100755 --- a/scripts/remove-patches.pl +++ b/scripts/remove-patches.pl @@ -6,13 +6,12 @@ use readmanifest; for my $p (@ARGV) { my %narFiles; + my %localPaths; my %patches; - readManifest $p, - \%narFiles, \%patches; + readManifest $p, \%narFiles, \%localPaths, \%patches; %patches = (); - writeManifest $p, - \%narFiles, \%patches; + writeManifest $p, \%narFiles, \%patches; } -- cgit 1.4.1