mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
parent
5693c5da8e
commit
421ac69830
1 changed files with 6 additions and 2 deletions
|
@ -19,12 +19,16 @@ stdenv.mkDerivation rec {
|
|||
enableParallelBuilding = true;
|
||||
|
||||
dontUseQmakeConfigure = true;
|
||||
configureFlags = "-config release";
|
||||
configureFlags = [ "-config" "release" ];
|
||||
|
||||
preConfigure = ''
|
||||
sed -i -e 's|/bin/pwd|pwd|g' configure
|
||||
'';
|
||||
|
||||
doCheck = true;
|
||||
# The tests fail on darwin because of install_name if they run
|
||||
# before the frameworks are installed.
|
||||
doInstallCheck = true;
|
||||
installCheckTarget = "check";
|
||||
|
||||
# Hack to avoid TMPDIR in RPATHs.
|
||||
preFixup = "rm -rf lib";
|
||||
|
|
Loading…
Reference in a new issue