Fix "Please enabled hardened build flags" by using $(shell

dpkg-buildflags --export=configure) as a ./configure argument
(Closes: #656273)
This commit is contained in:
Ludovic Rousseau 2012-01-18 15:57:44 +00:00
parent afb9bd0b2c
commit c6d649988d
2 changed files with 6 additions and 2 deletions

5
debian/changelog vendored
View File

@ -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 <rousseau@debian.org> Wed, 18 Jan 2012 16:52:12 +0100
-- Ludovic Rousseau <rousseau@debian.org> Wed, 18 Jan 2012 16:53:59 +0100
pcsc-lite (1.8.1-5) unstable; urgency=low

3
debian/rules vendored
View File

@ -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)