summaryrefslogtreecommitdiff
path: root/debian/rules
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2007-11-14 09:31:26 +0000
committerColin Watson <cjwatson@debian.org>2007-11-14 09:31:26 +0000
commita660ece98c5a924a6dc29379419fdcb113451319 (patch)
tree748081a3931d031d8d32c6b8fc3663e730fdde08 /debian/rules
parent4f20864e604b53dc05dd02f46bf0fab9c3e207b3 (diff)
* Don't build PIE executables on m68k (closes: #451192).
Diffstat (limited to 'debian/rules')
-rwxr-xr-xdebian/rules2
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules
index e69fa652e..13363341e 100755
--- a/debian/rules
+++ b/debian/rules
@@ -30,7 +30,7 @@ ifeq ($(DEB_HOST_ARCH_CPU),)
30endif 30endif
31 31
32ifneq (,$(findstring :$(DEB_HOST_ARCH_OS):,:linux:knetbsd:)) 32ifneq (,$(findstring :$(DEB_HOST_ARCH_OS):,:linux:knetbsd:))
33 ifneq ($(DEB_HOST_ARCH_CPU),hppa) 33 ifeq (,$(findstring :$(DEB_HOST_ARCH_CPU):,:hppa:m68k:))
34 # Use position-independent executables to take advantage of address space 34 # Use position-independent executables to take advantage of address space
35 # layout randomisation. TODO: This should be done in configure. 35 # layout randomisation. TODO: This should be done in configure.
36 PIE_CFLAGS := -fPIE 36 PIE_CFLAGS := -fPIE