diff options
Diffstat (limited to 'android/androidmk.go')
-rw-r--r-- | android/androidmk.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/android/androidmk.go b/android/androidmk.go index 0d196b6d9..68a6415b1 100644 --- a/android/androidmk.go +++ b/android/androidmk.go @@ -592,10 +592,10 @@ func (a *AndroidMkEntries) fillInEntries(ctx fillInEntriesContext, mod blueprint } if !base.InVendorRamdisk() { - a.AddPaths("LOCAL_FULL_INIT_RC", base.initRcPaths) + a.AddPaths("LOCAL_FULL_INIT_RC", info.InitRcPaths) } - if len(base.vintfFragmentsPaths) > 0 { - a.AddPaths("LOCAL_FULL_VINTF_FRAGMENTS", base.vintfFragmentsPaths) + if len(info.VintfFragmentsPaths) > 0 { + a.AddPaths("LOCAL_FULL_VINTF_FRAGMENTS", info.VintfFragmentsPaths) } a.SetBoolIfTrue("LOCAL_PROPRIETARY_MODULE", Bool(base.commonProperties.Proprietary)) if Bool(base.commonProperties.Vendor) || Bool(base.commonProperties.Soc_specific) { |