diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2007-01-23T16·50+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2007-01-23T16·50+0000 |
commit | bae75ca5a18edbb9fb959e2e48065a1987ffb61a (patch) | |
tree | c1b169f6f290cb1e4c412a61051dd3a1ee987bc5 /scripts/generate-patches.pl.in | |
parent | 36d9258c0dbfeab095dc5727b6ebcb55afacb0a6 (diff) |
* 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.
Diffstat (limited to 'scripts/generate-patches.pl.in')
-rwxr-xr-x | scripts/generate-patches.pl.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/generate-patches.pl.in b/scripts/generate-patches.pl.in index 9e355f6aee28..9a5c3423f206 100755 --- a/scripts/generate-patches.pl.in +++ b/scripts/generate-patches.pl.in @@ -28,16 +28,18 @@ print "TEMP = $tmpDir\n"; #END { rmdir $tmpDir; } my %srcNarFiles; +my %srcLocalPaths; my %srcPatches; my %dstNarFiles; +my %dstLocalPaths; my %dstPatches; readManifest "$srcDir/MANIFEST", - \%srcNarFiles, \%srcPatches; + \%srcNarFiles, \%srcLocalPaths, \%srcPatches; readManifest "$dstDir/MANIFEST", - \%dstNarFiles, \%dstPatches; + \%dstNarFiles, \%dstLocalPaths, \%dstPatches; sub findOutputPaths { |