Author: lkajan-guest Date: 2011-10-02 20:01:48 +0000 (Sun, 02 Oct 2011) New Revision: 8039
Modified: trunk/packages/rostlab/pp-popularity-contest/trunk/debian/changelog trunk/packages/rostlab/pp-popularity-contest/trunk/debian/cron.daily Log: 1.0.3-4: fixed cron.daily that called script in pkgdatadir also after package uninstall - resulting in cron (error) output after package uninstall (Closes: #644057) Modified: trunk/packages/rostlab/pp-popularity-contest/trunk/debian/changelog =================================================================== --- trunk/packages/rostlab/pp-popularity-contest/trunk/debian/changelog 2011-10-02 13:35:28 UTC (rev 8038) +++ trunk/packages/rostlab/pp-popularity-contest/trunk/debian/changelog 2011-10-02 20:01:48 UTC (rev 8039) @@ -1,3 +1,11 @@ +pp-popularity-contest (1.0.3-4) UNRELEASED; urgency=low + + * fixed cron.daily that called script in pkgdatadir also after package + uninstall - resulting in cron (error) output after package uninstall + (Closes: #644057) + + -- Laszlo Kajan <[email protected]> Sun, 02 Oct 2011 21:58:43 +0200 + pp-popularity-contest (1.0.3-3) unstable; urgency=low * libboost-program-options-dev added to build-deps (Closes: #644002) Modified: trunk/packages/rostlab/pp-popularity-contest/trunk/debian/cron.daily =================================================================== --- trunk/packages/rostlab/pp-popularity-contest/trunk/debian/cron.daily 2011-10-02 13:35:28 UTC (rev 8038) +++ trunk/packages/rostlab/pp-popularity-contest/trunk/debian/cron.daily 2011-10-02 20:01:48 UTC (rev 8039) @@ -1,2 +1,2 @@ #!/bin/sh -/usr/share/pp-popularity-contest/cron.daily +if [ -x /usr/share/pp-popularity-contest/cron.daily ]; then /usr/share/pp-popularity-contest/cron.daily; fi _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit
