From 09208431ab3f98f20add73a3848723cd8fa4d127 Mon Sep 17 00:00:00 2001 From: rtogni Date: Sun, 4 Jun 2006 22:48:59 +0000 Subject: SVN switch: get version date from .svn subdir instead of CVS/Entries git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18560 b3059339-0415-0410-9bf9-f77b7e298cf2 --- version.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'version.sh') diff --git a/version.sh b/version.sh index a85b7c833f..de4a2ef35a 100755 --- a/version.sh +++ b/version.sh @@ -3,13 +3,13 @@ OS=`uname -s` case "$OS" in CYGWIN*|Linux|MINGW*) - last_cvs_update=`date -r CVS/Entries +%y%m%d-%H:%M 2>/dev/null` + last_cvs_update=`date -r .svn +%y%m%d-%H:%M 2>/dev/null` ;; Darwin|*BSD*) # BSD 'date -r' does not print modification time # LC_ALL=C sets month/day order and English language in the date string # The if in the awk call works around wrong day/month order. - last_cvs_update=`LC_ALL=C ls -lT CVS/Entries | \ + last_cvs_update=`LC_ALL=C ls -lT .svn | \ awk '{ \ day=$7; \ month=index(" JanFebMarAprMayJunJulAugSepOctNovDec", $6); \ -- cgit v1.2.3