python3Packages.pytz-deprecation-shim: Disable tests
[NixPkgs.git] / pkgs / stdenv / darwin / portable-libsystem.sh
blobf50ccc8d32eea4b6678264300479562dcc3ca4f9
1 # Make /nix/store/...-libSystem “portable” for static built binaries.
2 # This just rewrites everything in $1/bin to use the
3 # /usr/lib/libSystem.B.dylib that is provided on every macOS system.
5 fixupOutputHooks+=('fixLibsystemRefs $prefix')
7 fixLibsystemRefs() {
8 if [ -d "$1/bin" ]; then
9 find "$1/bin" -exec \
10 install_name_tool -change @libsystem@ /usr/lib/libSystem.B.dylib {} \;