diff options
author | 2024-11-13 16:45:36 +0000 | |
---|---|---|
committer | 2024-11-13 16:56:00 +0000 | |
commit | d1e4865bd96f21517f0a98c72d3d68a867a01cb6 (patch) | |
tree | 165e05498057f5cb2ef44072df5a48eebf945f5f | |
parent | 791976156514c58385d7dc352cedfad55ea1de7e (diff) |
Add missing quotation marks to the list
of binaries in the Apex.
Compilation will fail otherwise once the
flag is enabled.
Bug: 365585450
Test: Enable flag for the trunk_staging target
and verify the build.
Change-Id: I15656c1c230411fd9623e16f80e3923517c7d991
-rw-r--r-- | apex/Android.bp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apex/Android.bp b/apex/Android.bp index 838e879e2b..699edc2f40 100644 --- a/apex/Android.bp +++ b/apex/Android.bp @@ -38,7 +38,7 @@ apex_defaults { "WifiDialog", ], binaries: select(release_flag("RELEASE_WIFI_MAINLINE_SUPPLICANT_BINARY"), { - true: [wpa_supplicant_mainline], + true: ["wpa_supplicant_mainline"], default: [], }), jni_libs: [ |