aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2011-08-06 18:45:28 +0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2011-08-06 18:45:28 +0000
commit9d091ee99a9b962c72b3cb9485a89ba028dd1155 (patch)
treec8085f53e8d3620f7971be69c308cdf8ed7f6d36 /src/libexpr
parent00a724ebc6f049009ce0810b0ac44dd11199d88b (diff)
* Handle the case where the search path element is a regular file.
Diffstat (limited to 'src/libexpr')
-rw-r--r--src/libexpr/parser.y3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libexpr/parser.y b/src/libexpr/parser.y
index e54f6fe0a..449123a1f 100644
--- a/src/libexpr/parser.y
+++ b/src/libexpr/parser.y
@@ -558,7 +558,8 @@ Path EvalState::findFile(const string & path)
if (path.compare(0, i->first.size(), i->first) != 0 ||
(path.size() > i->first.size() && path[i->first.size()] != '/'))
continue;
- res = i->second + "/" + string(path, i->first.size());
+ res = i->second +
+ (path.size() == i->first.size() ? "" : "/" + string(path, i->first.size()));
}
if (pathExists(res)) return canonPath(res);
}