- Polish by Michał Kułach (closes: #658602)
- Italian by Francesca Ciceri (closes: #658744)
* Add Vcs-* fields to debian/control.
+ * Explicit call set -e in config/postrm/postinst scripts instead of on the
+ shebang line.
--
-#!/bin/sh -e
+#!/bin/sh
# config script for abook
# copyright 2012 by Gerfried Fuchs <rhonda@debian.org>
# Licenced under WTFPLv2
+set -e
+
action=$1
version=$2
-#!/bin/sh -e
+#!/bin/sh
# postinst for abook
# copyright 2003-2012 by Gerfried Fuchs <rhonda@debian.org>
# Licenced under WTFPLv2
+set -e
+
# Source debconf library.
if [ -e /usr/share/debconf/confmodule ]; then
. /usr/share/debconf/confmodule
-#!/bin/sh -e
+#!/bin/sh
# postrm for abook
# copyright 2003-2012 by Gerfried Fuchs <rhonda@debian.org>
# Licenced under WTFPLv2
+set -e
+
if [ -x "`which update-menus 2>/dev/null`" ]; then
update-menus
fi