diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2012-02-20 11:15:02 +0200 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2012-02-20 11:20:29 +0200 |
commit | 31826318dfd2f4c38d6bf34f957fe51edc0a2b14 (patch) | |
tree | f7cf3a2e4092a4248bdd06474a6c24f9f04fadf7 /RepositoryFixes.mk | |
parent | 21366a4b95defb007ddccd409126536a6e8dc50d (diff) |
Shared libraries must in practice be called lib*.so on Android
Otherwise the package creating code (part of the SDK) won't include
them and/or the package installation code (on the OS itself) won't
unpack them. (They just silently skip the file.)
Diffstat (limited to 'RepositoryFixes.mk')
-rw-r--r-- | RepositoryFixes.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/RepositoryFixes.mk b/RepositoryFixes.mk index 24938978767c..b1cb18f84d2c 100644 --- a/RepositoryFixes.mk +++ b/RepositoryFixes.mk @@ -40,7 +40,9 @@ gb_Library_FILENAMES := $(patsubst log_uno:liblog_uno%,log_uno:liblog_uno_uno%,$ gb_Library_FILENAMES := $(patsubst purpenvhelper:libpurpen%,purpenvhelper:libuno_purpen%,$(gb_Library_FILENAMES)) gb_Library_FILENAMES := $(patsubst salhelper:libsalhelper%,salhelper:libuno_salhelper%,$(gb_Library_FILENAMES)) gb_Library_FILENAMES := $(patsubst ucbhelper:libucbhelper%,ucbhelper:libucbhelper4%,$(gb_Library_FILENAMES)) +ifneq ($(OS),ANDROID) gb_Library_FILENAMES := $(patsubst unoexceptionprotector:libuno%,unoexceptionprotector:uno%,$(gb_Library_FILENAMES)) +endif gb_Library_FILENAMES := $(patsubst unsafe_uno:libunsafe_uno%,unsafe_uno:libunsafe_uno_uno%,$(gb_Library_FILENAMES)) endif |