aboutsummaryrefslogtreecommitdiffstats
path: root/updater/Android.mk
diff options
context:
space:
mode:
authorYing Wang <wangying@google.com>2010-07-20 17:31:04 -0700
committerYing Wang <wangying@google.com>2010-07-20 17:31:04 -0700
commitb4277c25c639aa462a1d2f2d78f776443c670fb6 (patch)
tree8166459cce8b5ba4bdc7bab67388cc8b893e0415 /updater/Android.mk
parent050d0f7fec309a51d1e616a98882faaf3655e04e (diff)
downloadbootable_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/Android.mk')
-rw-r--r--updater/Android.mk2
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