summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorValentin Batz <senneth@irssi.org>2004-11-29 16:19:43 +0000
committervb <vb@dbcabf3a-b0e7-0310-adc4-f8d773084564>2004-11-29 16:19:43 +0000
commitd83b8ea4bfbfff2fd22109ddf953dc54abde7d87 (patch)
treef3256f5ec6e8522fa03d6cc1b9fcb1d243e427e5 /configure.in
parentd5fb3039e200c13dd722f832f5984db6501f80fd (diff)
downloadirssi-d83b8ea4bfbfff2fd22109ddf953dc54abde7d87.zip
Fixed bug in configure.in, if release timestamp is before 10:00 and contains 8's or 9's it causes problems because it's not an octal number, patch by Peder Stray
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3687 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index c87b8153..22d42bb0 100644
--- a/configure.in
+++ b/configure.in
@@ -914,7 +914,7 @@ dnl **
dnl ** IRSSI_VERSION_DATE and IRSSI_VERSION_TIME
dnl **
VERSION_DATE=`head -n 2 $srcdir/ChangeLog| tail -n 1 | awk '{print $5}' | tr -d '-'`
-VERSION_TIME=`head -n 2 $srcdir/ChangeLog| tail -n 1 | awk '{print $6}' | awk -F: '{print $1$2}'`
+VERSION_TIME=`head -n 2 $srcdir/ChangeLog| tail -n 1 | awk '{print $6}' | awk -F: '{printf "%d\n" $1$2}'`
AC_SUBST(VERSION_DATE)
AC_SUBST(VERSION_TIME)