diff options
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/debian/rules b/debian/rules index 46aeb7a..2cf220c 100755 --- a/debian/rules +++ b/debian/rules @@ -1,7 +1,11 @@ #!/usr/bin/make -f -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 +export DEB_BUILD_MAINT_OPTIONS=hardening=+all + +export CFLAGS=$(shell dpkg-buildflags --get CFLAGS) +export CPPFLAGS=$(shell dpkg-buildflags --get CPPFLAGS) +export LDFLAGS=$(shell dpkg-buildflags --get LDFLAGS) + DEBVERS := $(shell dpkg-parsechangelog | sed -n -e 's/^Version: //p') |