[Pkg-xfce-commits] r6488 - goodies/branches/wheezy/lightdm/debian
Yves-Alexis Perez
corsac at alioth.debian.org
Mon Mar 19 03:29:12 UTC 2012
Author: corsac
Date: 2012-03-19 15:29:11 +0000 (Mon, 19 Mar 2012)
New Revision: 6488
Modified:
goodies/branches/wheezy/lightdm/debian/changelog
goodies/branches/wheezy/lightdm/debian/lightdm-gtk-greeter.postinst
goodies/branches/wheezy/lightdm/debian/lightdm-qt-greeter.postinst
Log:
* debian/lightdm-*-greeter.postinst:
- remove "" protection around variable since it won't expand the * that
way. Fix setting the correct greeter. closes: #664585
Modified: goodies/branches/wheezy/lightdm/debian/changelog
===================================================================
--- goodies/branches/wheezy/lightdm/debian/changelog 2012-03-11 17:18:59 UTC (rev 6487)
+++ goodies/branches/wheezy/lightdm/debian/changelog 2012-03-19 15:29:11 UTC (rev 6488)
@@ -1,3 +1,11 @@
+lightdm (1.0.9-2) UNRELEASED; urgency=low
+
+ * debian/lightdm-*-greeter.postinst:
+ - remove "" protection around variable since it won't expand the * that
+ way. Fix setting the correct greeter. closes: #664585
+
+ -- Yves-Alexis Perez <corsac at debian.org> Mon, 19 Mar 2012 16:27:07 +0100
+
lightdm (1.0.9-1) unstable; urgency=low
* New upstream release.
Modified: goodies/branches/wheezy/lightdm/debian/lightdm-gtk-greeter.postinst
===================================================================
--- goodies/branches/wheezy/lightdm/debian/lightdm-gtk-greeter.postinst 2012-03-11 17:18:59 UTC (rev 6487)
+++ goodies/branches/wheezy/lightdm/debian/lightdm-gtk-greeter.postinst 2012-03-19 15:29:11 UTC (rev 6488)
@@ -13,9 +13,9 @@
if [ -n "${GREETER}" ];
then
LIGHTDM_SET_DEFAULTS=/usr/lib/*/lightdm/lightdm-set-defaults
- if [ -x "${LIGHTDM_SET_DEFAULTS}" ];
+ if [ -x ${LIGHTDM_SET_DEFAULTS} ];
then
- "${LIGHTDM_SET_DEFAULTS}" --greeter "${GREETER}"
+ ${LIGHTDM_SET_DEFAULTS} --greeter "${GREETER}"
fi
fi
db_stop || true
Modified: goodies/branches/wheezy/lightdm/debian/lightdm-qt-greeter.postinst
===================================================================
--- goodies/branches/wheezy/lightdm/debian/lightdm-qt-greeter.postinst 2012-03-11 17:18:59 UTC (rev 6487)
+++ goodies/branches/wheezy/lightdm/debian/lightdm-qt-greeter.postinst 2012-03-19 15:29:11 UTC (rev 6488)
@@ -13,9 +13,9 @@
if [ -n "${GREETER}" ];
then
LIGHTDM_SET_DEFAULTS=/usr/lib/*/lightdm/lightdm-set-defaults
- if [ -x "${LIGHTDM_SET_DEFAULTS}" ];
+ if [ -x ${LIGHTDM_SET_DEFAULTS} ];
then
- "${LIGHTDM_SET_DEFAULTS}" --greeter "${GREETER}"
+ ${LIGHTDM_SET_DEFAULTS} --greeter "${GREETER}"
fi
fi
db_stop || true
More information about the Pkg-xfce-commits
mailing list