Browse Source

Change order of LDFLAGS paths (#1754)

pull/2028/head
tillhainbach 3 years ago
committed by GitHub
parent
commit
9052491a05
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      plugins/python-build/bin/python-build

+ 1
- 1
plugins/python-build/bin/python-build View File

@ -1494,7 +1494,7 @@ use_xcode_sdk_zlib() {
echo "python-build: use zlib from xcode sdk"
export CFLAGS="-I${xc_sdk_path}/usr/include ${CFLAGS}"
if is_mac -ge 1100; then
export LDFLAGS="-L${xc_sdk_path}/usr/lib ${LDFLAGS}"
export LDFLAGS="${LDFLAGS} -L${xc_sdk_path}/usr/lib"
fi
fi
}

Loading…
Cancel
Save