removed debug trace command

svn path=/nixos/trunk/; revision=12055
This commit is contained in:
Marc Weber 2008-06-12 12:19:47 +00:00
parent 216e3b73f4
commit afed669a5a
1 changed files with 1 additions and 1 deletions

View File

@ -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";
})