1
mirror of https://github.com/mpv-player/mpv synced 2024-10-22 08:51:57 +02:00

using cc like configure

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3301 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
jaf 2001-12-03 22:28:05 +00:00
parent b4a59df0bc
commit d7d60ddebf

View File

@ -5,6 +5,7 @@ if [ $? -ne 0 ]; then
# probably no gnu date installed(?), use current date # probably no gnu date installed(?), use current date
last_cvs_update=`date +%y%m%d-%H:%M` last_cvs_update=`date +%y%m%d-%H:%M`
fi fi
gcc_version=`gcc --version` cc=`cat config.mak |grep CC | cut -d '=' -f 2`
cc_version=`${cc} --version`
echo "#define VERSION \"CVS-${last_cvs_update}-gcc-${gcc_version} \"" >version.h echo "#define VERSION \"CVS-${last_cvs_update}${cc}-${cc_version} \"" >version.h