From e5232c499a9c2334783823f7988f9d6bef3cf68d Mon Sep 17 00:00:00 2001 From: Sergey Poznyakoff Date: Wed, 31 Jul 2013 12:00:25 +0300 Subject: Version 1.4.90 * NEWS: Version 1.4.90 * configure.ac: Likewise. * lib/beam/common.in (beam_lock): Bugfix. --- NEWS | 2 ++ configure.ac | 2 +- lib/beam/common.in | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index 4d1f507..98d9f6b 100644 --- a/NEWS +++ b/NEWS @@ -4,6 +4,8 @@ See the end of file for copying conditions. Please send mailutils bug reports to . +Version 1.4.90, (Git) + Version 1.4, 2013-01-16 * Fix beam-cleaner to handle end-of-year week wraparound. diff --git a/configure.ac b/configure.ac index d89ad2e..14264a2 100644 --- a/configure.ac +++ b/configure.ac @@ -16,7 +16,7 @@ AC_PREREQ(2.63) -AC_INIT(beam, 1.4, gray@gnu.org.ua) +AC_INIT(beam, 1.4.90, gray@gnu.org.ua) AC_CONFIG_SRCDIR(backup.in) AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([1.11 tar-ustar silent-rules]) diff --git a/lib/beam/common.in b/lib/beam/common.in index 7e69640..e99433e 100644 --- a/lib/beam/common.in +++ b/lib/beam/common.in @@ -52,9 +52,9 @@ beam_lock() { if [ -r $backup_pidfile ]; then pid=$(head -n 1 $backup_pidfile) if [ -z "$pid" ]; then - abend "pidfile $backup_pidfile exists but is unreadable or empty" + abend 1 "pidfile $backup_pidfile exists but is unreadable or empty" fi - abend "another beam process (pid $backup_pid) is still running; exiting" + abend 1 "another beam process (pid $pid) is still running; exiting" fi echo $$ > $backup_pidfile || exit 1 epilogue_hook="$epilogue_hook beam_unlock" -- cgit v1.2.1