diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc
index ed4c0285b30139069c42aa2c24ddd1ab2d395beb..e71e3a6d46cbdce2cd1e682776539eb6cf08033d 100644
--- a/src/libexpr/primops.cc
+++ b/src/libexpr/primops.cc
@@ -1659,7 +1659,6 @@ static void prim_concatMap(EvalState & state, const Pos & pos, Value * * args, V
 
     for (unsigned int n = 0; n < nrLists; ++n) {
         Value * vElem = args[1]->listElems()[n];
-        state.forceValue(*vElem);
         state.callFunction(*args[0], *vElem, lists[n], pos);
         state.forceList(lists[n], pos);
         len += lists[n].listSize();