Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(397)

Unified Diff: firmware/Makefile

Issue 2857030: Exhaustive test for rollback code (Closed) Base URL: ssh://git@chromiumos-git/vboot_reference.git
Patch Set: Fix write count handling and improve comments. Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Makefile ('k') | firmware/include/tlcl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: firmware/Makefile
diff --git a/firmware/Makefile b/firmware/Makefile
index 73ed2311b0332f6d9c00550a15d6054203453d60..38eb24f87d1c16a5a9f5c756fe7dac92c4971a9c 100644
--- a/firmware/Makefile
+++ b/firmware/Makefile
@@ -51,10 +51,10 @@ update-version :
| sort | xargs cat | md5sum | cut -c 25-32 > \
${BUILD_ROOT}/x.tmp && \
echo "char* VbootVersion = \"VBOOv=$$(cat ${BUILD_ROOT}/x.tmp)\";" > \
- ${BUILD_ROOT}\version.tmp && \
- (cmp -s ${BUILD_ROOT}\version.tmp version.c || \
+ ${BUILD_ROOT}/version.tmp && \
+ (cmp -s ${BUILD_ROOT}/version.tmp version.c || \
( echo "** Updating version.c **" && \
- cp ${BUILD_ROOT}\version.tmp version.c))
+ cp ${BUILD_ROOT}/version.tmp version.c))
include ../common.mk
« no previous file with comments | « Makefile ('k') | firmware/include/tlcl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698