aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2019-04-02 16:14:11 -0700
committerSimran Basi <sbasi@google.com>2019-04-10 16:49:27 -0700
commit713ef2b4243ae621e95b94f68a56083d738248af (patch)
tree6e106fe5b219ea882daf27dcf59f5cc4b597c1f9 /python
parent479465691f305b402aa3cf65cc092fcd985fa0cf (diff)
downloadbuild_soong-713ef2b4243ae621e95b94f68a56083d738248af.tar.gz
build_soong-713ef2b4243ae621e95b94f68a56083d738248af.tar.bz2
build_soong-713ef2b4243ae621e95b94f68a56083d738248af.zip
Fix package path of android/soong/android pctx
android/soong/common was renamed to android/soong/android long ago, but the pctx package path was still "android/soong/common". This required all users of rules defined in android/soong/android to import "android/soong/android" and then pctx.Import("android/soong/common"). Bug: 130298888 Test: m checkbuild Change-Id: I20d096522760538f7cfc2bec3d4bfeba99b275d4
Diffstat (limited to 'python')
-rw-r--r--python/builder.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/builder.go b/python/builder.go
index e3b490cf..36baecdf 100644
--- a/python/builder.go
+++ b/python/builder.go
@@ -73,7 +73,7 @@ var (
func init() {
pctx.Import("github.com/google/blueprint/bootstrap")
- pctx.Import("android/soong/common")
+ pctx.Import("android/soong/android")
pctx.HostBinToolVariable("parCmd", "soong_zip")
pctx.HostBinToolVariable("mergeParCmd", "merge_zips")