diff options
Diffstat (limited to 'android/arch.go')
-rw-r--r-- | android/arch.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/android/arch.go b/android/arch.go index 152016cd1..7436660ac 100644 --- a/android/arch.go +++ b/android/arch.go @@ -425,7 +425,7 @@ func osMutator(bpctx blueprint.BottomUpMutatorContext) { // blueprint.BottomUpMutatorContext because android.BottomUpMutatorContext // filters out non-Soong modules. Now that we've handled them, create a // normal android.BottomUpMutatorContext. - mctx := bottomUpMutatorContextFactory(bpctx, module, false, false) + mctx := bottomUpMutatorContextFactory(bpctx, module, false) base := module.base() @@ -570,7 +570,7 @@ func archMutator(bpctx blueprint.BottomUpMutatorContext) { // blueprint.BottomUpMutatorContext because android.BottomUpMutatorContext // filters out non-Soong modules. Now that we've handled them, create a // normal android.BottomUpMutatorContext. - mctx := bottomUpMutatorContextFactory(bpctx, module, false, false) + mctx := bottomUpMutatorContextFactory(bpctx, module, false) base := module.base() |