diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2007-02-27T23·18+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2007-02-27T23·18+0000 |
commit | 2ea3bebc23b2d13475c00191f6005740fbdc7771 (patch) | |
tree | cda01c8cd6812f8d0cb2f11b6f2941a2ca1c2221 /src | |
parent | 044b6482c185ba8966d9d893b033d97d66b5f225 (diff) |
* Doh! The deriver can be empty.
Diffstat (limited to 'src')
-rw-r--r-- | src/libstore/local-store.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc index c91368865309..dce2b449eec0 100644 --- a/src/libstore/local-store.cc +++ b/src/libstore/local-store.cc @@ -826,7 +826,8 @@ Path LocalStore::importPath(bool requireSignature, Source & source) PathSet references = readStorePaths(hashAndReadSource); - Path deriver = readStorePath(hashAndReadSource); + Path deriver = readString(hashAndReadSource); + if (deriver != "") assertStorePath(deriver); Hash hash = hashAndReadSource.hashSink.finish(); hashAndReadSource.hashing = false; |