mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
746c502acc
svn path=/nixpkgs/trunk/; revision=18667
12 lines
394 B
Bash
12 lines
394 B
Bash
export NIX_ENFORCE_PURITY=1
|
|
export NIX_IGNORE_LD_THROUGH_GCC=1
|
|
|
|
if test "$system" = "i686-darwin" -o "$system" = "powerpc-darwin" -o "$system" = "x86_64-darwin"; then
|
|
export NIX_DONT_SET_RPATH=1
|
|
export NIX_NO_SELF_RPATH=1
|
|
dontFixLibtool=1
|
|
NIX_STRIP_DEBUG=0 # !!! do we still need this?
|
|
stripAllFlags=" " # the Darwin "strip" command doesn't know "-s"
|
|
xargsFlags=" "
|
|
fi
|