mirror of https://github.com/mpv-player/mpv
13 lines
412 B
Bash
Executable File
13 lines
412 B
Bash
Executable File
#!/bin/sh
|
|
|
|
last_cvs_update=`date -r CVS/Entries +%y%m%d-%H:%M 2>/dev/null`
|
|
if test $? -ne 0 ; then
|
|
# probably no gnu date installed(?), use current date
|
|
last_cvs_update=`date +%y%m%d-%H:%M`
|
|
elif test `uname -s` = 'Darwin' ; then
|
|
# darwin's date has different meaning for -r
|
|
last_cvs_update=`date +%y%m%d-%H:%M`
|
|
fi
|
|
|
|
echo "#define VERSION \"CVS-${last_cvs_update}-$1 \"" >version.h
|