summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2019-05-22 11:13:25 -0700
committerColin Cross <ccross@android.com>2019-05-22 11:13:25 -0700
commit5221ec3ed73640dcbe16f67fbceba729ef58ca3e (patch)
treed75077cee933f01c6d29277f2bbfc929adec8051
parent476836eafa91e008b6293e6eda9f4ddfcacbef97 (diff)
downloadiorap-5221ec3ed73640dcbe16f67fbceba729ef58ca3e.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: I8208309b8191620f600af17a54974e53a6237b5f
-rw-r--r--Android.bp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Android.bp b/Android.bp
index 6d335a6..9293000 100644
--- a/Android.bp
+++ b/Android.bp
@@ -137,7 +137,7 @@ cc_library_static {
],
srcs: [
- "src/manager/**.cc",
+ "src/manager/**/*.cc",
],
}