about summary refs log tree commit diff
path: root/src/libexpr/primops.cc
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2012-01-03T15·27+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2012-01-03T15·27+0000
commit71f3c46cf65c0638946c9bb57c36a2b5f177a672 (patch)
tree91933c92425b341e9d4562ae73dff033986b1011 /src/libexpr/primops.cc
parent921111d1972388a0aa1841c545c753cb996c9257 (diff)
* Drop the inefficient "Path" suffix in output attribute names.
Diffstat (limited to 'src/libexpr/primops.cc')
-rw-r--r--src/libexpr/primops.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc
index 02c444cd6b..21c9fb351d 100644
--- a/src/libexpr/primops.cc
+++ b/src/libexpr/primops.cc
@@ -451,9 +451,7 @@ static void prim_derivationStrict(EvalState & state, Value * * args, Value & v)
     state.mkAttrs(v, 1 + drv.outputs.size());
     mkString(*state.allocAttr(v, state.sDrvPath), drvPath, singleton<PathSet>("=" + drvPath));
     foreach (DerivationOutputs::iterator, i, drv.outputs) {
-        /* The output path of an output X is ‘<X>Path’,
-           e.g. ‘outPath’. */
-        mkString(*state.allocAttr(v, state.symbols.create(i->first + "Path")),
+        mkString(*state.allocAttr(v, state.symbols.create(i->first)),
             i->second.path, singleton<PathSet>("!" + i->first + "!" + drvPath));
     }
     v.attrs->sort();