summaryrefslogtreecommitdiffstats
path: root/core/definitions.mk
diff options
context:
space:
mode:
authorYing Wang <wangying@google.com>2015-04-09 09:22:36 -0700
committerYing Wang <wangying@google.com>2015-04-09 10:06:33 -0700
commitaaf9a5b0ccb502d17fa83a119e69baec1af76d1a (patch)
tree46128c17dd3b2580680d5903e55c62a493ef0b66 /core/definitions.mk
parent2594d3d1214642a8da8cdff01562ec205b02935a (diff)
downloadbuild-aaf9a5b0ccb502d17fa83a119e69baec1af76d1a.zip
build-aaf9a5b0ccb502d17fa83a119e69baec1af76d1a.tar.gz
build-aaf9a5b0ccb502d17fa83a119e69baec1af76d1a.tar.bz2
Remove ancient ranlib workaround on Mac OS X.
Apparently we don't need it for Mac OS X 10.7 and above. Change-Id: I5ee81700c16e8c66b2d5f2b373fd2d523b5ec018
Diffstat (limited to 'core/definitions.mk')
-rw-r--r--core/definitions.mk26
1 files changed, 0 insertions, 26 deletions
diff --git a/core/definitions.mk b/core/definitions.mk
index e56e0db..4f0daae 100644
--- a/core/definitions.mk
+++ b/core/definitions.mk
@@ -2091,32 +2091,6 @@ $(foreach t,$(1),\
$(hide) mkdir -p $(dir $(3)/$(s)); cp -Rf $(t) $(3)/$(s)$(newline))
endef
-###########################################################
-## On some platforms (MacOS), after copying a static
-## library, ranlib must be run to update an internal
-## timestamp!?!?!
-###########################################################
-
-ifeq ($(HOST_RUN_RANLIB_AFTER_COPYING),true)
-define transform-host-ranlib-copy-hack
- $(hide) ranlib $@ || true
-endef
-else
-define transform-host-ranlib-copy-hack
-@true
-endef
-endif
-
-ifeq ($(TARGET_RUN_RANLIB_AFTER_COPYING),true)
-define transform-ranlib-copy-hack
- $(hide) ranlib $@
-endef
-else
-define transform-ranlib-copy-hack
-@true
-endef
-endif
-
###########################################################
## Commands to call Proguard