From cd85778597a709c5d589c9f984d039e5b96bafca Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Thu, 7 May 2020 05:59:37 -0400 Subject: Initial Darwin compat sweep --- gettext/build.sh | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'gettext') diff --git a/gettext/build.sh b/gettext/build.sh index 5d0192e..6adab04 100644 --- a/gettext/build.sh +++ b/gettext/build.sh @@ -11,6 +11,10 @@ depends=() function prepare() { tar xf ${name}-${version}.tar.gz cd ${name}-${version} + + if [[ $(uname -s) == Darwin ]]; then + LDFLAGS="-L${_runtime}" + fi } function build() { -- cgit