From 5c840c895ee393edd8afa65baa2f577d587b9a42 Mon Sep 17 00:00:00 2001 From: Philippe Coval Date: Wed, 15 Nov 2017 18:57:55 +0100 Subject: [PATCH] coap-http-proxy: Build shared lib also on linux Bug: https://jira.iotivity.org/browse/IOT-1745 Change-Id: Ie7196851c3e623f383e6727b5cbd1c29cf1ae6ac Signed-off-by: Philippe Coval --- service/coap-http-proxy/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/coap-http-proxy/SConscript b/service/coap-http-proxy/SConscript index 8756892dc7..b9655bfb7f 100644 --- a/service/coap-http-proxy/SConscript +++ b/service/coap-http-proxy/SConscript @@ -93,7 +93,7 @@ proxy_src = [ './src/CoapHttpParser.c', ] -if target_os in ['tizen']: +if target_os in ['tizen', 'linux']: proxysdk = local_env.SharedLibrary('coap_http_proxy', proxy_src) else: proxysdk = local_env.StaticLibrary('coap_http_proxy', proxy_src) -- GitLab