diff options
author | 2022-08-29 15:15:53 -0700 | |
---|---|---|
committer | 2022-08-29 18:42:32 -0700 | |
commit | 325fb3e2aac104d7090dd4978356920875c61ee0 (patch) | |
tree | 8ac3fffa92a70d86765b1e66dd69895ea08b80cf /cmds/bu/Android.bp | |
parent | 7d825e68805ead1f6862562d48f93546567e4c39 (diff) |
Fix module-file name collisions
Bazel doesn't allow a module and file with the same name.
Bug: 198619163
Test: m ime, verified it was still installed to out/target/product/emulator64_x86_64/system/bin/ime and not ime.sh
Change-Id: I214e190e159a7aff9149e77146d1a493992e885d
Diffstat (limited to 'cmds/bu/Android.bp')
-rw-r--r-- | cmds/bu/Android.bp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/bu/Android.bp b/cmds/bu/Android.bp index 5b4ec3197cdd..b61a7a6e6429 100644 --- a/cmds/bu/Android.bp +++ b/cmds/bu/Android.bp @@ -20,6 +20,6 @@ license { java_binary { name: "bu", - wrapper: "bu", + wrapper: "bu.sh", srcs: ["**/*.java"], } |