From ea0ee755bd54db2c3766714946c24df4e9b94fc0 Mon Sep 17 00:00:00 2001
From: Ludovic Courtès <ludo@gnu.org>
Date: Thu, 18 Apr 2013 22:22:30 +0200
Subject: daemon: Really enable the substituter by default.

* nix/nix-daemon/guix-daemon.cc (main): Really enable the substituter by
  default.  Reported by Mark H. Weaver.
---
 nix/nix-daemon/guix-daemon.cc | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

(limited to 'nix')

diff --git a/nix/nix-daemon/guix-daemon.cc b/nix/nix-daemon/guix-daemon.cc
index 0e2f36150b..0f21e4f99e 100644
--- a/nix/nix-daemon/guix-daemon.cc
+++ b/nix/nix-daemon/guix-daemon.cc
@@ -204,10 +204,8 @@ main (int argc, char *argv[])
       settings.substituters.clear ();
       string subs = getEnv ("NIX_SUBSTITUTERS", "default");
       if (subs == "default")
-	/* XXX: No substituters until we have something that works.  */
-	settings.substituters.clear ();
-	// settings.substituters.push_back (settings.nixLibexecDir
-	// 				 + "/guix/substitute-binary");
+	settings.substituters.push_back (settings.nixLibexecDir
+					 + "/guix/substitute-binary");
       else
 	settings.substituters = tokenizeString<Strings> (subs, ":");
 
-- 
cgit v1.2.3