diff options
Diffstat (limited to 'rust/prebuilt.go')
-rw-r--r-- | rust/prebuilt.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rust/prebuilt.go b/rust/prebuilt.go index f9c8934d6..94fe1e546 100644 --- a/rust/prebuilt.go +++ b/rust/prebuilt.go @@ -93,7 +93,8 @@ func (prebuilt *prebuiltLibraryDecorator) compilerProps() []interface{} { } func (prebuilt *prebuiltLibraryDecorator) compile(ctx ModuleContext, flags Flags, deps PathDeps) android.Path { - prebuilt.exportLinkDirs(android.PathsForModuleSrc(ctx, prebuilt.Properties.Link_dirs).Strings()...) + prebuilt.flagExporter.exportLinkDirs(android.PathsForModuleSrc(ctx, prebuilt.Properties.Link_dirs).Strings()...) + prebuilt.flagExporter.setProvider(ctx) srcPath, paths := srcPathFromModuleSrcs(ctx, prebuilt.prebuiltSrcs()) if len(paths) > 0 { |