summaryrefslogtreecommitdiffstats
path: root/version.sh
blob: b43ccfe7a511ed041cd113e8844907cd8661e989 (plain)
1
2
3
4
5
6
7
8
9
#!/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}-$1 \"" >version.h