Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7a504334 authored by Colin Cross's avatar Colin Cross
Browse files

Fix java soong_to_convert data

soong_to_convert looks for modules with no unconverted deps, but
the list of converted modules was not being updated for java and
app prebuilts.  That meant soong_to_convert only reported modules
with no deps at all.

Test: examine soong_to_convert.txt
Change-Id: I136e6fa74153a80df5ecd767642bb2feb2ddb9dc
parent b05a4f1e
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -104,3 +104,5 @@ ifdef LOCAL_SOONG_RRO_DIRS
      $(LOCAL_EXPORT_PACKAGE_RESOURCES), \
      $(LOCAL_SOONG_RRO_DIRS))
endif

SOONG_ALREADY_CONV := $(SOONG_ALREADY_CONV) $(LOCAL_MODULE)
+2 −0
Original line number Diff line number Diff line
@@ -161,3 +161,5 @@ $(my_exported_sdk_libs_file):
	$(if $(PRIVATE_EXPORTED_SDK_LIBS),\
		$(hide) echo $(PRIVATE_EXPORTED_SDK_LIBS) | tr ' ' '\n' > $@,\
		$(hide) touch $@)

SOONG_ALREADY_CONV := $(SOONG_ALREADY_CONV) $(LOCAL_MODULE)