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

Unified Diff: src/tlcl/Makefile

Issue 2868035: Fix wrong "Makefile*" pattern in find. (Closed) Base URL: ssh://git@chromiumos-git/tpm_lite.git
Patch Set: Created 10 years, 6 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 | « no previous file | src/tlcl/version.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/tlcl/Makefile
diff --git a/src/tlcl/Makefile b/src/tlcl/Makefile
index 791ff5da1fec74dad1f8ab34f20d53d221033929..e384aa90d4ddd19646d8049817249d9ee51f082b 100644
--- a/src/tlcl/Makefile
+++ b/src/tlcl/Makefile
@@ -28,7 +28,7 @@ update-structures: generator
cp structures.tmp structures.h )
update-version:
- find \( -name '*.[ch]' -o -name 'Makefile*' \) -a \! -name version.h \
+ find \( -name '*.[ch]' -o -name 'Makefile' \) -a \! -name version.h \
| sort | xargs cat | md5sum | cut -c 25-32 > x.tmp
echo "char* TlclVersion = \"TLCLv=$$(cat x.tmp)\";" > version.tmp
cmp -s version.tmp version.h || \
« no previous file with comments | « no previous file | src/tlcl/version.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698