diff options
author | Ying Wang <wangying@google.com> | 2010-07-20 17:31:04 -0700 |
---|---|---|
committer | Ying Wang <wangying@google.com> | 2010-07-20 17:31:04 -0700 |
commit | b4277c25c639aa462a1d2f2d78f776443c670fb6 (patch) | |
tree | 8166459cce8b5ba4bdc7bab67388cc8b893e0415 /updater | |
parent | 050d0f7fec309a51d1e616a98882faaf3655e04e (diff) | |
download | bootable_recovery-b4277c25c639aa462a1d2f2d78f776443c670fb6.zip bootable_recovery-b4277c25c639aa462a1d2f2d78f776443c670fb6.tar.gz bootable_recovery-b4277c25c639aa462a1d2f2d78f776443c670fb6.tar.bz2 |
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
Diffstat (limited to 'updater')
-rw-r--r-- | updater/Android.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/updater/Android.mk b/updater/Android.mk index dcc6a49..c8f61f4 100644 --- a/updater/Android.mk +++ b/updater/Android.mk @@ -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 |