diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2012-03-26 19:10:36 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2012-03-26 19:10:46 +0300 |
commit | 0a08973de9e3431edb90633fcefdbaa1af7837fd (patch) | |
tree | ff9a992e26633e8261f49fc2153968fbb35946e8 /sal | |
parent | 40193672b163cd1a23c00d2e4313805983fc8a60 (diff) |
No separate sal_textenc library built for Android
(As a low-hanging fruit to drop the shared library count by
one... Each library less counts.)
Diffstat (limited to 'sal')
-rw-r--r-- | sal/CppunitTest_sal_rtl_strings.mk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sal/CppunitTest_sal_rtl_strings.mk b/sal/CppunitTest_sal_rtl_strings.mk index 0a00e8b08119..fc384d62d8ea 100644 --- a/sal/CppunitTest_sal_rtl_strings.mk +++ b/sal/CppunitTest_sal_rtl_strings.mk @@ -42,9 +42,11 @@ $(eval $(call gb_CppunitTest_add_linked_libs,sal_rtl_strings,\ $(gb_STDLIBS) \ )) -# the test uses O(U)String capabilities that dlopen this lib +# The test uses O(U)String capabilities that dlopen this lib +ifneq ($(OS),ANDROID) +# Except that on Android we don't build it separately $(call gb_CppunitTest_get_target,sal_rtl_strings) : \ $(call gb_Library_get_target,sal_textenc) - +endif # vim: set noet sw=4 ts=4: |