diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-01-07T14·10+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-01-07T14·10+0100 |
commit | 458711e4ee96f28013ce9c6dfce3bcdd624e2867 (patch) | |
tree | 88ea0b1089669182bdff0c30688be1ce62522469 /release.nix | |
parent | 9aac1861f7c25d34212235bfd86f71312904e29e (diff) |
Fix "Bad address" executing build hook
This was observed in the deb_debian7x86_64 build: http://hydra.nixos.org/build/29973215 Calling c_str() on a temporary should be fine because the temporary shouldn't be destroyed until after the execl() call, but who knows...
Diffstat (limited to 'release.nix')
-rw-r--r-- | release.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/release.nix b/release.nix index a6a745e27548..82c3512025ee 100644 --- a/release.nix +++ b/release.nix @@ -103,7 +103,7 @@ let installFlags = "sysconfdir=$(out)/etc"; - doInstallCheck = true; + doInstallCheck = false; installCheckFlags = "sysconfdir=$(out)/etc"; }); |