aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rw-r--r--configure.ac2
-rw-r--r--lib/beam/common.in4
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 <gray@gnu.org.ua>.
+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"

Return to:

Send suggestions and report system problems to the System administrator.