summaryrefslogtreecommitdiff
path: root/debian/rules
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2014-02-13 10:53:57 +0000
committerColin Watson <cjwatson@debian.org>2014-02-13 10:53:57 +0000
commit8619df32f483f5b7424d4d0f295378f4bf9337bf (patch)
treeff0d466736d495cd1806188acbcb311b7c21a082 /debian/rules
parentd9c13ef6ec9310358f1a1232e3e272507d6ae530 (diff)
Configure --without-hardening on hppa, to work around http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60155 (closes: #738798).
Diffstat (limited to 'debian/rules')
-rwxr-xr-xdebian/rules5
1 files changed, 5 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules
index c878d5e2d..888921670 100755
--- a/debian/rules
+++ b/debian/rules
@@ -73,6 +73,11 @@ ifeq ($(DEB_HOST_ARCH_OS),hurd)
73confflags += --with-libs=-lcrypt 73confflags += --with-libs=-lcrypt
74endif 74endif
75 75
76# http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60155
77ifeq ($(DEB_HOST_ARCH),hppa)
78confflags += --without-hardening
79endif
80
76# Everything above here is common to the deb and udeb builds. 81# Everything above here is common to the deb and udeb builds.
77confflags_udeb := $(confflags) 82confflags_udeb := $(confflags)
78 83