From 5221ec3ed73640dcbe16f67fbceba729ef58ca3e Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Wed, 22 May 2019 11:13:25 -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: I8208309b8191620f600af17a54974e53a6237b5f --- Android.bp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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", ], } -- cgit v1.2.3