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

Unified Diff: frontends/tasm/tasm.c

Issue 761753002: Remove a reference to __DATE__ from yasm for non official builds. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/yasm/patched-yasm/
Patch Set: Created 6 years, 1 month 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 | frontends/yasm/yasm.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frontends/tasm/tasm.c
===================================================================
--- frontends/tasm/tasm.c (revision 293122)
+++ frontends/tasm/tasm.c (working copy)
@@ -224,7 +224,9 @@
/* version message */
/*@observer@*/ static const char *version_msg[] = {
PACKAGE_STRING,
+#if !defined(DONT_EMBED_BUILD_METADATA) || defined(OFFICIAL_BUILD)
"Compiled on " __DATE__ ".",
+#endif
"Copyright (c) 2001-2010 Peter Johnson and other Yasm developers.",
"Run yasm --license for licensing overview and summary."
};
« no previous file with comments | « no previous file | frontends/yasm/yasm.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698