about summary refs log tree commit diff
path: root/src/libexpr/primops.cc
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2014-06-24T14·50-0400
committerShea Levy <shea@shealevy.com>2014-06-24T14·50-0400
commitd62f46e500958bc97ae6837911e27c20a47cc181 (patch)
tree74d8e8f480979061d1b1b09198fa671f774f7af9 /src/libexpr/primops.cc
parent5cd022d6c099c583c0494bdacd06f4eb32661135 (diff)
Only add the importNative primop if the allow-arbitrary-code-during-evaluation option is true (default false)
Diffstat (limited to 'src/libexpr/primops.cc')
-rw-r--r--src/libexpr/primops.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc
index d6ac7c9578..ff82f36b52 100644
--- a/src/libexpr/primops.cc
+++ b/src/libexpr/primops.cc
@@ -1368,7 +1368,8 @@ void EvalState::createBaseEnv()
     mkApp(v, *baseEnv.values[baseEnvDispl - 1], *v2);
     forceValue(v);
     addConstant("import", v);
-    addPrimOp("__importNative", 2, prim_importNative);
+    if (settings.enableImportNative)
+        addPrimOp("__importNative", 2, prim_importNative);
     addPrimOp("__typeOf", 1, prim_typeOf);
     addPrimOp("isNull", 1, prim_isNull);
     addPrimOp("__isFunction", 1, prim_isFunction);