From 9cca8dd332c619772fc2dae5e0ad22d05972cdd0 Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Wed, 22 May 2019 11:13:55 -0700 Subject: Fix glob syntax Globs are only intended to support ** as a directory, i.e. **/*.cc not **.cc. Bug: 129411151 Test: m nothing Change-Id: I5ebb3ef39d81e70a1a1afc95c167c02f3ec16fd9 --- Android.bp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Android.bp b/Android.bp index f97bb44..02cd991 100644 --- a/Android.bp +++ b/Android.bp @@ -33,7 +33,7 @@ cc_library_static { filegroup { name: "liblua-sources", srcs: [ - "src/**.c", + "src/**/*.c", ], exclude_srcs: [ // Exclude the interpreter -- cgit v1.2.3