diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-05-07 05:59:37 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-05-07 05:59:37 -0400 |
commit | cd85778597a709c5d589c9f984d039e5b96bafca (patch) | |
tree | 4a0e4cecb2ff216cc270a2fac5716a54175e7c15 /xz/build.sh | |
parent | 041601b591742fa071f50f25ee8ef9f5b1008bd4 (diff) | |
download | spm_packages-cd85778597a709c5d589c9f984d039e5b96bafca.tar.gz |
Initial Darwin compat sweep
Diffstat (limited to 'xz/build.sh')
-rw-r--r-- | xz/build.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/xz/build.sh b/xz/build.sh index e625ffc..7e8b063 100644 --- a/xz/build.sh +++ b/xz/build.sh @@ -1,6 +1,6 @@ #!/bin/bash name=xz -version=5.2.4 +version=5.2.5 revision=0 sources=( "https://tukaani.org/xz/${name}-${version}.tar.gz" @@ -11,6 +11,11 @@ depends=() function prepare() { tar xf ${name}-${version}.tar.gz cd ${name}-${version} + + if [[ $(uname -s) == Darwin ]]; then + # redundant rpath kills the build + LDFLAGS="-L${_runtime}/lib" + fi } function build() { |