summaryrefslogtreecommitdiffstats
path: root/util/newvers.sh
diff options
context:
space:
mode:
Diffstat (limited to 'util/newvers.sh')
-rw-r--r--util/newvers.sh21
1 files changed, 21 insertions, 0 deletions
diff --git a/util/newvers.sh b/util/newvers.sh
index 7f0a994f..e730853e 100644
--- a/util/newvers.sh
+++ b/util/newvers.sh
@@ -1,8 +1,29 @@
#!/bin/sh
# $Id: newvers.sh,v 1.2 2003/06/22 14:45:17 in2 Exp $
+# prevent chinese logs
+LC_ALL=en_US.UTF-8
+export LC_ALL
+
t=`date`
+# are we working in CVS?
+if [ -d ".svn" ] ; then
+
+ #determine branch
+ branch=`svn info | grep '^URL: ' | sed 's/.*\/pttbbs\/\([a-zA-Z0-9_\-\.]*\)\/pttbbs\/.*/\1/'`
+ branch="$branch "
+
+ #determine rev
+ rev=`svn info | grep Revision | sed 's/Revision: /r/'`
+
+ if [ "$rev" != "" ]
+ then
+ t="$t, $branch$rev"
+ fi
+
+fi
+
cat << EOF > vers.c
char * const compile_time = "${t}";
EOF