From afed669a5a3b0e763296c33e27e977b32dd5bf8c Mon Sep 17 00:00:00 2001 From: Marc Weber Date: Thu, 12 Jun 2008 12:19:47 +0000 Subject: [PATCH] removed debug trace command svn path=/nixos/trunk/; revision=12055 --- etc/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/default.nix b/etc/default.nix index 9f2056f679f..3a4e2bdecac 100644 --- a/etc/default.nix +++ b/etc/default.nix @@ -261,7 +261,7 @@ import ../helpers/make-etc.nix { # unixODBC drivers (this solution is not perfect.. Because the user has to # ask the admin to add a driver.. but it's an easy solution which works) ++ (let inis = config.environment.unixODBCDrivers pkgs; - in optional ((pkgs.lib.traceWhatis inis) != [] ) { + in optional (inis != [] ) { source = pkgs.writeText "odbcinst.ini" (pkgs.lib.concatStringsSep "\n" inis); target = "odbcinst.ini"; })