File tree 2 files changed +1
-7
lines changed
2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -74,10 +74,6 @@ def set_partition(self, partition: str):
74
74
self .__partition = partition
75
75
return self
76
76
77
- def get_partition (self ):
78
- assert self .__partition is not None
79
- return self .__partition
80
-
81
77
def set_rule_name (self , rule_name : str ):
82
78
self .__rule_name = rule_name
83
79
return self
Original file line number Diff line number Diff line change @@ -197,8 +197,6 @@ def write_elfs_package(
197
197
bitses = []
198
198
depses = []
199
199
200
- partition = builder .get_partition ()
201
-
202
200
for f in files :
203
201
f_path = f'{ ctx .vendor_prop_path } /{ f .dst } '
204
202
@@ -207,7 +205,7 @@ def write_elfs_package(
207
205
return write_sh_package (files [0 ], builder , any_extension = True )
208
206
209
207
deps = remove_libs_so_ending (libs )
210
- deps = run_libs_fixup (ctx .lib_fixups , deps , partition )
208
+ deps = run_libs_fixup (ctx .lib_fixups , deps , file . partition )
211
209
machines .append (machine )
212
210
bitses .append (bits )
213
211
depses .append (deps )
You can’t perform that action at this time.
0 commit comments