about summary refs log tree commit diff
path: root/src/libstore/globals.cc
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-07-11T22·52-0400
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-07-11T22·52-0400
commitf2bdc87595376efb2d05a8555b0686922a298929 (patch)
tree17a708586e04d1c7e44d0966fc827dfc281c3d2e /src/libstore/globals.cc
parent15c15da482eb30f95f4dab04b582a45edc10815b (diff)
Update the other substituters
Diffstat (limited to 'src/libstore/globals.cc')
-rw-r--r--src/libstore/globals.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/globals.cc b/src/libstore/globals.cc
index f660ed68df0d..9636bf49d987 100644
--- a/src/libstore/globals.cc
+++ b/src/libstore/globals.cc
@@ -155,8 +155,8 @@ void setDefaultsFromEnvironment()
 
     string subs = getEnv("NIX_SUBSTITUTERS", "default");
     if (subs == "default") {
-        //substituters.push_back(nixLibexecDir + "/nix/substituters/copy-from-other-stores.pl");
-        //substituters.push_back(nixLibexecDir + "/nix/substituters/download-using-manifests.pl");
+        substituters.push_back(nixLibexecDir + "/nix/substituters/copy-from-other-stores.pl");
+        substituters.push_back(nixLibexecDir + "/nix/substituters/download-using-manifests.pl");
         substituters.push_back(nixLibexecDir + "/nix/substituters/download-from-binary-cache.pl");
     } else
         substituters = tokenizeString(subs, ":");