From 2992699ec564500900cdfa86706ed8fb8b617042 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Fri, 28 Oct 2016 00:08:46 +0200 Subject: [PATCH] [DEBUG] correct local simple C test --- test/test-c/lutin_test-c.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test-c/lutin_test-c.py b/test/test-c/lutin_test-c.py index c7fbcb9..ede461c 100644 --- a/test/test-c/lutin_test-c.py +++ b/test/test-c/lutin_test-c.py @@ -10,11 +10,11 @@ def get_desc(): return "Test C compilation" def configure(target, my_module): - my_module.add_extra_compile_flags() + my_module.add_extra_flags() my_module.add_src_file([ 'test.c' ]) - if target.name=="Android": + if "Android" in target.get_type(): my_module.compile_version("c", 1999) return my_module