summaryrefslogtreecommitdiffstats
path: root/version.sh
blob: 65a7dfeb500aa4fb3decb45b441e1af958cf6dae (plain)
1
2
3
4
5
6
7
8
9
10
#!/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
gcc_version=`gcc --version`

echo "#define VERSION \"CVS-${last_cvs_update}-gcc-${gcc_version} \"" >version.h