am 657aeac8: am 9ce06f11: Don\'t run ranlib on MacOS 10.7

* commit '657aeac8423d9e3cd31c0dffcecaad78a53d7604':
  Don't run ranlib on MacOS 10.7
This commit is contained in:
Al Sutton 2011-12-21 16:46:37 -08:00 committed by Android Git Automerger
commit a4f5991486
1 changed files with 5 additions and 1 deletions

View File

@ -53,7 +53,11 @@ HOST_JNILIB_SUFFIX := .jnilib
HOST_GLOBAL_CFLAGS += \
-include $(call select-android-config-h,darwin-x86)
HOST_RUN_RANLIB_AFTER_COPYING := true
ifneq ($(filter 10.7.%, $(build_mac_version)),)
HOST_RUN_RANLIB_AFTER_COPYING := false
else
HOST_RUN_RANLIB_AFTER_COPYING := true
endif
HOST_GLOBAL_ARFLAGS := cqs
HOST_CUSTOM_LD_COMMAND := true