From 469c9ac2f9da6743e2e6944895c577df490abda5 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Wed, 16 Nov 2011 22:18:23 +0200 Subject: Enforce a "lib" prefix for UNO components for Android This commit for the old build system. (Don't bother for components not relevant for Android.) The Android package installer (as invoked through "adb install", from "ant debug install") silently ignores native libraries in app packages (.apk files) whose names don't start with "lib" and end with ".so". The package builder (as invoked through "ant debug") in the SDK gladly includes also thusly named native libraries in the .apk, though. Yay for consistency. --- io/source/stm/makefile.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'io/source/stm') diff --git a/io/source/stm/makefile.mk b/io/source/stm/makefile.mk index 52dd0c492823..5a6c78a065da 100644 --- a/io/source/stm/makefile.mk +++ b/io/source/stm/makefile.mk @@ -27,7 +27,7 @@ PRJ=..$/.. PRJNAME=io -TARGET = streams.uno +TARGET = $(ENFORCEDSHLPREFIX)streams.uno ENABLE_EXCEPTIONS=TRUE NO_BSYMBOLIC=TRUE -- cgit