Permalink
Browse files

depends: fix zlib build on osx

zlib is sneaky and expects ar to be libtool on darwin.

Github-Pull: #9973
Rebased-From: c624753
  • Loading branch information...
1 parent ddc2dd1 commit e9611d10b67dd99bae83b32dedc9767b4c2e44d2 @theuni theuni committed with MarcoFalke Mar 10, 2017
Showing with 3 additions and 1 deletion.
  1. +3 −1 depends/packages/zlib.mk
View
@@ -7,8 +7,10 @@ $(package)_sha256_hash=c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca11
define $(package)_set_vars
$(package)_build_opts= CC="$($(package)_cc)"
$(package)_build_opts+=CFLAGS="$($(package)_cflags) $($(package)_cppflags) -fPIC"
-$(package)_build_opts+=AR="$($(package)_ar)"
$(package)_build_opts+=RANLIB="$($(package)_ranlib)"
+$(package)_build_opts+=AR="$($(package)_ar)"
+$(package)_build_opts_darwin+=AR="$($(package)_libtool)"
+$(package)_build_opts_darwin+=ARFLAGS="-o"
endef
define $(package)_config_cmds

0 comments on commit e9611d1

Please sign in to comment.