aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYing Wang <wangying@google.com>2013-07-15 08:47:33 -0700
committerYing Wang <wangying@google.com>2013-07-15 15:57:25 +0000
commit988251c92269676c891dcb548fecdc100755b431 (patch)
tree475211f96b5e4b14d312d90553ca796f4c8bba9c
parentba9636d47fdc91c4caca6c9e0ad618956ddbb98b (diff)
downloadbuild-988251c92269676c891dcb548fecdc100755b431.tar.gz
Fix $(so_suffix) error.
Change-Id: I32cb4d4efe0a473e67a54c035df4dd82b6e4a3f0 (cherry picked from commit 80b71fa326e4b5d9510d528c8feb08e28376a350)
-rw-r--r--core/prebuilt.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/prebuilt.mk b/core/prebuilt.mk
index f5732d1b08..fd8e0f52f0 100644
--- a/core/prebuilt.mk
+++ b/core/prebuilt.mk
@@ -89,7 +89,7 @@ $(my_prefix)DEPENDENCIES_ON_SHARED_LIBRARIES += $(LOCAL_MODULE):$(LOCAL_INSTALLE
# since we use -rpath-link which points to the built module's path.
built_shared_libraries := \
$(addprefix $($(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
- $(addsuffix $(so_suffix), \
+ $(addsuffix $($(my_prefix)SHLIB_SUFFIX), \
$(LOCAL_SHARED_LIBRARIES)))
$(LOCAL_BUILT_MODULE) : $(built_shared_libraries)
endif