From c6d649988d703f96b5d981ec84f932c813b81d42 Mon Sep 17 00:00:00 2001 From: Ludovic Rousseau Date: Wed, 18 Jan 2012 15:57:44 +0000 Subject: [PATCH] Fix "Please enabled hardened build flags" by using $(shell dpkg-buildflags --export=configure) as a ./configure argument (Closes: #656273) --- debian/changelog | 5 ++++- debian/rules | 3 ++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index d2134a4..8be3a15 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,11 @@ pcsc-lite (1.8.2-1) unstable; urgency=low * New upstream release + * Fix "Please enabled hardened build flags" by using $(shell + dpkg-buildflags --export=configure) as a ./configure argument + (Closes: #656273) - -- Ludovic Rousseau Wed, 18 Jan 2012 16:52:12 +0100 + -- Ludovic Rousseau Wed, 18 Jan 2012 16:53:59 +0100 pcsc-lite (1.8.1-5) unstable; urgency=low diff --git a/debian/rules b/debian/rules index ed26952..13aa10a 100755 --- a/debian/rules +++ b/debian/rules @@ -9,4 +9,5 @@ endif dh $@ override_dh_auto_configure: - dh_auto_configure -- $(EXTRA_CONFIGURE_ARGS) --with-systemdsystemunitdir=/lib/systemd/system + dh_auto_configure -- $(EXTRA_CONFIGURE_ARGS) --with-systemdsystemunitdir=/lib/systemd/system $(shell dpkg-buildflags --export=configure) +