summaryrefslogtreecommitdiffstats
path: root/version.sh
blob: 32de30ce85766a8d4dc82d642a274c1b5f2ea466 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

last_cvs_update=`date -r CVS/Entries +%y%m%d-%H:%M 2>/dev/null`
if [ $? -ne 0 ]; then
	# probably no gnu date installed(?), use current date
	last_cvs_update=`date +%y%m%d-%H:%M`
fi
echo "#define VERSION \"CVS-${last_cvs_update}\"" >version.h