From f3e3952349d3db29f63aca82353e0a69aa244943 Mon Sep 17 00:00:00 2001 From: Yves-Alexis Perez Date: Tue, 15 May 2012 19:20:54 +0000 Subject: [PATCH] * debian/patches: - 01_fix-cancel-authentication added, fix issue which prevents cancelling an authentication process. * debian/rules: - build with --parallel. --- debian/changelog | 10 ++++++++++ debian/patches/01_fix-cancel-authentication.patch | 10 ++++++++++ debian/patches/series | 1 + debian/rules | 2 +- 4 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 debian/patches/01_fix-cancel-authentication.patch diff --git a/debian/changelog b/debian/changelog index 0a569fb..4566aac 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +lightdm-gtk-greeter (1.1.5-2) UNRELEASED; urgency=low + + * debian/patches: + - 01_fix-cancel-authentication added, fix issue which prevents cancelling + an authentication process. + * debian/rules: + - build with --parallel. + + -- Yves-Alexis Perez Tue, 15 May 2012 21:13:50 +0200 + lightdm-gtk-greeter (1.1.5-1) experimental; urgency=low * Initial release. diff --git a/debian/patches/01_fix-cancel-authentication.patch b/debian/patches/01_fix-cancel-authentication.patch new file mode 100644 index 0000000..cc46e79 --- /dev/null +++ b/debian/patches/01_fix-cancel-authentication.patch @@ -0,0 +1,10 @@ +--- a/src/lightdm-gtk-greeter.c 2012-04-03 20:35:21.000000000 +0000 ++++ b/src/lightdm-gtk-greeter.c 2012-04-28 00:35:17.000000000 +0000 +@@ -194,7 +194,6 @@ + { + cancelling = TRUE; + lightdm_greeter_cancel_authentication (greeter); +- return; + } + + /* Start a new login or return to the user list */ diff --git a/debian/patches/series b/debian/patches/series index 3f5def9..8b022c9 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1 +1,2 @@ +01_fix-cancel-authentication.patch 04_default-gtk-greeter-config.patch diff --git a/debian/rules b/debian/rules index 96e1a31..ab7195a 100755 --- a/debian/rules +++ b/debian/rules @@ -4,4 +4,4 @@ export DEB_LDFLAGS_MAINT_APPEND=-Wl,--as-needed -Wl,-O1 export DEB_BUILD_MAINT_OPTIONS=hardening=+pie,+bindnow %: - dh $@ + dh $@ --parallel