From f36f545d75b338d24416f1584690e61d1ccd4cc7 Mon Sep 17 00:00:00 2001 From: Emil Sjolander Date: Fri, 9 Dec 2016 10:10:39 -0800 Subject: [PATCH] Add an anchor to the android platform regex Summary: This prevents android from matching in the middle of a platform. Reviewed By: gkassabli Differential Revision: D4306164 fbshipit-source-id: 7f62a6a017724f8f6741d3e53b5fbe0650c8c88e --- lib/fb/BUCK | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fb/BUCK b/lib/fb/BUCK index da59ceaa..7300608d 100644 --- a/lib/fb/BUCK +++ b/lib/fb/BUCK @@ -11,7 +11,7 @@ prebuilt_cxx_library( name = 'ndklog', header_only = True, exported_platform_linker_flags = [ - ('android.*', ['-llog']), + ('^android.*', ['-llog']), ], visibility = [YOGA_ROOT], )