commit | 325fb3e2aac104d7090dd4978356920875c61ee0 | [log] [tgz] |
---|---|---|
author | Cole Faust <colefaust@google.com> | Mon Aug 29 15:15:53 2022 -0700 |
committer | Cole Faust <colefaust@google.com> | Mon Aug 29 18:42:32 2022 -0700 |
tree | 8ac3fffa92a70d86765b1e66dd69895ea08b80cf | |
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
diff --git a/cmds/requestsync/Android.bp b/cmds/requestsync/Android.bp index 57e8dd3..8718f79 100644 --- a/cmds/requestsync/Android.bp +++ b/cmds/requestsync/Android.bp
@@ -20,6 +20,6 @@ java_binary { name: "requestsync", - wrapper: "requestsync", + wrapper: "requestsync.sh", srcs: ["**/*.java"], }
diff --git a/cmds/requestsync/requestsync b/cmds/requestsync/requestsync.sh similarity index 100% rename from cmds/requestsync/requestsync rename to cmds/requestsync/requestsync.sh