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

Commit b4277c25 authored by Ying Wang's avatar Ying Wang
Browse files

Mute unwanted error message

This CL removes the following line from the top of build logs:
"diff: out/target/product/*/obj/PACKAGING/updater_extensions_intermediates/register.inc.list: No such file or directory"

Change-Id: I79c15a69a0b1b0da0e45620b45a7a0fea5625250
parent 050d0f7f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -51,7 +51,7 @@ inc := $(call intermediates-dir-for,PACKAGING,updater_extensions)/register.inc

junk := $(shell mkdir -p $(dir $(inc));\
	        echo $(TARGET_RECOVERY_UPDATER_LIBS) > $(inc).temp;\
	        diff -q $(inc).temp $(inc).list || cp -f $(inc).temp $(inc).list)
	        diff -q $(inc).temp $(inc).list 2>/dev/null || cp -f $(inc).temp $(inc).list)

$(inc) : libs := $(TARGET_RECOVERY_UPDATER_LIBS)
$(inc) : $(inc).list