Don't depend on R.txt)
There is an extra ) in the implicit output path for R.txt, which causes the rule to rerun every time because of a missing output file. There is already an implicit output for R.txt on line 180 (which is why the incorrect path didn't cause an immediate "No rule to generate R.txt" error), so just remove the incorrect one. Bug: 77244156 Test: m checkbuild && m checkbuild Change-Id: Id960ee211b89a9a5f5104cdcac23bc3124742145
This commit is contained in:
parent
f05573eb91
commit
ac48f41ba5
|
@ -152,7 +152,7 @@ my_srcjar := $(intermediates.COMMON)/aapt.srcjar
|
|||
LOCAL_SRCJARS += $(my_srcjar)
|
||||
$(R_file_stamp): PRIVATE_SRCJAR := $(my_srcjar)
|
||||
$(R_file_stamp): PRIVATE_JAVA_GEN_DIR := $(intermediates.COMMON)/aapt
|
||||
$(R_file_stamp): .KATI_IMPLICIT_OUTPUTS := $(intermediates.COMMON)/R.txt) $(my_srcjar)
|
||||
$(R_file_stamp): .KATI_IMPLICIT_OUTPUTS := $(my_srcjar)
|
||||
endif
|
||||
|
||||
$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ANDROID_MANIFEST := $(full_android_manifest)
|
||||
|
|
Loading…
Reference in New Issue