diff options
| author | 2022-09-01 15:20:00 -0700 | |
|---|---|---|
| committer | 2022-09-01 15:20:00 -0700 | |
| commit | bcc3d05aba2395290dddcaabe8980b334c9caa22 (patch) | |
| tree | 96139e277f27a4d9a72723b88bb720b74c79c27a | |
| parent | 6faa161557b84905ab07c9e586258687231f7d93 (diff) | |
Fix module-file name collisions
Bazel doesn't allow a module and file with the same name.
Bug: 198619163
Test: Presubmits
Change-Id: Ie9731b627945d2ff221d3a5d08a32a5a172f9dcd
| -rw-r--r-- | java/config/config.go | 2 | ||||
| -rw-r--r-- | scripts/Android.bp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/java/config/config.go b/java/config/config.go index 3ca9bad3e..422f86002 100644 --- a/java/config/config.go +++ b/java/config/config.go @@ -148,7 +148,7 @@ func init() { pctx.SourcePathVariable("JavaKytheExtractorJar", "prebuilts/build-tools/common/framework/javac_extractor.jar") pctx.SourcePathVariable("Ziptime", "prebuilts/build-tools/${hostPrebuiltTag}/bin/ziptime") - pctx.HostBinToolVariable("GenKotlinBuildFileCmd", "gen-kotlin-build-file.py") + pctx.HostBinToolVariable("GenKotlinBuildFileCmd", "gen-kotlin-build-file") pctx.SourcePathVariable("JarArgsCmd", "build/soong/scripts/jar-args.sh") pctx.SourcePathVariable("PackageCheckCmd", "build/soong/scripts/package-check.sh") diff --git a/scripts/Android.bp b/scripts/Android.bp index 814bd5753..b5b588b8d 100644 --- a/scripts/Android.bp +++ b/scripts/Android.bp @@ -168,7 +168,7 @@ python_test_host { } python_binary_host { - name: "gen-kotlin-build-file.py", + name: "gen-kotlin-build-file", main: "gen-kotlin-build-file.py", srcs: [ "gen-kotlin-build-file.py", |