aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2019-05-22 11:13:55 -0700
committerColin Cross <ccross@android.com>2019-05-22 11:13:55 -0700
commit9cca8dd332c619772fc2dae5e0ad22d05972cdd0 (patch)
tree139f3fb68499373521983fb31e003e63ff3c3721
parent411f59e20bd3b1e5526dc84034c19965770febac (diff)
downloadlua-9cca8dd332c619772fc2dae5e0ad22d05972cdd0.tar.gz
Fix glob syntaxandroid10-dev
Globs are only intended to support ** as a directory, i.e. **/*.cc not **.cc. Bug: 129411151 Test: m nothing Change-Id: I5ebb3ef39d81e70a1a1afc95c167c02f3ec16fd9
-rw-r--r--Android.bp2
1 files changed, 1 insertions, 1 deletions
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