diff options
author | 2025-03-14 15:56:03 -0700 | |
---|---|---|
committer | 2025-03-14 15:56:03 -0700 | |
commit | f2aacebb28cf16f9c3fa4c59a9a9a931ab6b0846 (patch) | |
tree | da660a6da02da57b771ebc1f7ea1bf3189a90c47 /sh/sh_binary.go | |
parent | 5fe9b839b0b67218bcdfdbeec06b6813f040939e (diff) | |
parent | f22120fb1da7f75a571966124bb0da6a57fd4f07 (diff) |
Merge "Change CommonModuleInfoProvider to a pointer." into main
Diffstat (limited to 'sh/sh_binary.go')
-rw-r--r-- | sh/sh_binary.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/sh_binary.go b/sh/sh_binary.go index 7041642e0..b2546eb19 100644 --- a/sh/sh_binary.go +++ b/sh/sh_binary.go @@ -510,7 +510,7 @@ func (s *ShTest) GenerateAndroidBuildActions(ctx android.ModuleContext) { // so that it's compatible with the default rpath values. var relPath string linkableInfo := android.OtherModuleProviderOrDefault(ctx, dep, cc.LinkableInfoProvider) - commonInfo := android.OtherModuleProviderOrDefault(ctx, dep, android.CommonModuleInfoProvider) + commonInfo := android.OtherModulePointerProviderOrDefault(ctx, dep, android.CommonModuleInfoProvider) if commonInfo.Target.Arch.ArchType.Multilib == "lib64" { relPath = filepath.Join("lib64", linkableInfo.OutputFile.Path().Base()) |