aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--base/version.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/base/version.cpp b/base/version.cpp
index cdc949b60f..79ae2dc92a 100644
--- a/base/version.cpp
+++ b/base/version.cpp
@@ -45,10 +45,10 @@
* was made.
*
* So, how could we implement this? At least on unix systems, a special script
- * could do it. Basically, that script could parse the output of "svn info" to
- * determine the revision of the checkout, and insert that information somehow
- * into the build process (e.g. by generating a tiny header file, analog to
- * internal_version.h, maybe called svn_rev.h or so.
+ * could do it. Basically, that script could parse the output of "svn info" or
+ * "svnversion" to determine the revision of the checkout, and insert that
+ * information somehow into the build process (e.g. by generating a tiny
+ * header file, analog to internal_version.h, maybe called svn_rev.h or so.)
*
* Drawback: This only works on systems which can run suitable scripts as part
* of the build proces (so I guess Visual C++ would be out of the game here?