aboutsummaryrefslogtreecommitdiffstats
path: root/cc
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 /cc
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 'cc')
-rw-r--r--cc/ndk_sysroot.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cc/ndk_sysroot.go b/cc/ndk_sysroot.go
index 9265bffa..e39bae55 100644
--- a/cc/ndk_sysroot.go
+++ b/cc/ndk_sysroot.go
@@ -63,7 +63,7 @@ func init() {
android.RegisterModuleType("preprocessed_ndk_headers", preprocessedNdkHeadersFactory)
android.RegisterSingletonType("ndk", NdkSingleton)
- pctx.Import("android/soong/common")
+ pctx.Import("android/soong/android")
}
func getNdkInstallBase(ctx android.PathContext) android.OutputPath {