diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2018-09-28T11·28+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2018-09-28T11·28+0200 |
commit | 99d4bb2d4cd94e0234e8cfb12887db155d98ac50 (patch) | |
tree | 687d608ec9f0ef3a316d6826eeff2c795c63c9f8 /src/libstore/build.cc | |
parent | c9ba33870e6da73420317e9ef80b8c9dee693c3d (diff) |
Remove obsolete check on system features
Diffstat (limited to 'src/libstore/build.cc')
-rw-r--r-- | src/libstore/build.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libstore/build.cc b/src/libstore/build.cc index 727b8b3444ab..69c3c2c1e041 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -1665,7 +1665,6 @@ HookReply DerivationGoal::tryBuildHook() required from the build machine. (The hook could parse the drv file itself, but this is easier.) */ auto features = getStringsAttr("requiredSystemFeatures").value_or(Strings()); - for (auto & i : features) checkStoreName(i); /* !!! abuse */ /* Send the request to the hook. */ worker.hook->sink |