summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog8
-rwxr-xr-xdebian/rules2
2 files changed, 8 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index a13ce9b..aced019 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,14 @@
-bitz-server (2.0.1-1) UNRELEASED; urgency=medium
+bitz-server (2.0.1-1) unstable; urgency=medium
* New upstream release:
- Remove upstream applied patches 0600-man_page_spelling.patch and
0100-spelling.patch
+ * debian/rules:
+ - Add "export DEB_CXXFLAGS_MAINT_APPEND = -fPIE" and
+ "export DEB_LDFLAGS_MAINT_APPEND = -fPIE -pie" to fix missing CXXFLAGS
+ and LDFLAGS.
- -- Jörg Frings-Fürst <debian@jff.email> Sun, 15 Jul 2018 09:59:32 +0200
+ -- Jörg Frings-Fürst <debian@jff.email> Sun, 05 Aug 2018 00:14:26 +0200
bitz-server (2.0.0-1) unstable; urgency=medium
diff --git a/debian/rules b/debian/rules
index 8e8a98a..14b3671 100755
--- a/debian/rules
+++ b/debian/rules
@@ -5,6 +5,8 @@
#export DH_VERBOSE=1
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
+export DEB_CXXFLAGS_MAINT_APPEND = -fPIE
+export DEB_LDFLAGS_MAINT_APPEND = -fPIE -pie
VERSION = $(shell head -n1 debian/changelog | sed -e 's/.*(//;s/-.*).*//;s/\+/\-/')