Author: preining-guest Date: 2006-02-27 16:16:49 +0000 (Mon, 27 Feb 2006) New Revision: 964
Modified: tex-common/trunk/debian/changelog tex-common/trunk/debian/config.in Log: fix bug where group names cannot be accessed Modified: tex-common/trunk/debian/changelog =================================================================== --- tex-common/trunk/debian/changelog 2006-02-26 23:51:22 UTC (rev 963) +++ tex-common/trunk/debian/changelog 2006-02-27 16:16:49 UTC (rev 964) @@ -1,3 +1,10 @@ +tex-common (0.18.1) UNRELEASED; urgency=low + + * cater for groups without a name when setting the groupname debconf + variable (Closes: #354401) [preining] + + -- Norbert Preining <[EMAIL PROTECTED]> Mon, 27 Feb 2006 02:58:53 +0100 + tex-common (0.18) unstable; urgency=low * Perform all config checks in the postinst script instead of exiting Modified: tex-common/trunk/debian/config.in =================================================================== --- tex-common/trunk/debian/config.in 2006-02-26 23:51:22 UTC (rev 963) +++ tex-common/trunk/debian/config.in 2006-02-27 16:16:49 UTC (rev 964) @@ -59,6 +59,10 @@ PERMS=$(stat --format="%a" /var/cache/fonts 2>/dev/null) GROUP=$(stat --format="%G" /var/cache/fonts 2>/dev/null) + if [ "$GROUP" = "UNKNOWN" ] ; then + GROUP=$(stat --format="%g" /var/cache/fonts 2>/dev/null) + fi + # see wether we already have asked this question once db_fget tex-common/managecache seen || true SEEN="$RET" _______________________________________________ Pkg-tetex-commits mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-tetex-commits

