summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Baptiste Queru <jbq@google.com>2011-05-31 23:03:36 +0200
committerAndroid Code Review <code-review@android.com>2011-05-31 23:03:36 +0200
commit7172eb7b623f4b30f5a709d639fcd3fb51cd6220 (patch)
tree2bd70317003201fbd0c3e34fb2a2764a1ae46bd3
parentfix comparison of ECC stats before and after mtd reads (diff)
parentMute unharmful build warning at the top of the build log: (diff)
downloadandroid_bootable_recovery-7172eb7b623f4b30f5a709d639fcd3fb51cd6220.tar
android_bootable_recovery-7172eb7b623f4b30f5a709d639fcd3fb51cd6220.tar.gz
android_bootable_recovery-7172eb7b623f4b30f5a709d639fcd3fb51cd6220.tar.bz2
android_bootable_recovery-7172eb7b623f4b30f5a709d639fcd3fb51cd6220.tar.lz
android_bootable_recovery-7172eb7b623f4b30f5a709d639fcd3fb51cd6220.tar.xz
android_bootable_recovery-7172eb7b623f4b30f5a709d639fcd3fb51cd6220.tar.zst
android_bootable_recovery-7172eb7b623f4b30f5a709d639fcd3fb51cd6220.zip
-rw-r--r--updater/Android.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/updater/Android.mk b/updater/Android.mk
index dcc6a49ab..c8f61f41d 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