Merge pull request #3318 from joelteon/master
Fix icu4c build on darwin
This commit is contained in:
commit
0d23cf835f
1 changed files with 2 additions and 1 deletions
|
@ -30,7 +30,8 @@ stdenv.mkDerivation {
|
|||
sed -i -e "s|/bin/sh|${stdenv.shell}|" configure
|
||||
'';
|
||||
|
||||
configureFlags = "--disable-debug";
|
||||
configureFlags = "--disable-debug" +
|
||||
stdenv.lib.optionalString stdenv.isDarwin " --enable-rpath";
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue