summaryrefslogtreecommitdiffstats
path: root/version.sh
blob: d9c35fad266e57c48fe7a4409f136ca8df95227a (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 \"0.17cvs-${last_cvs_update}\"" >version.h