diff options
author | Colin Watson <cjwatson@debian.org> | 2007-11-14 09:31:26 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2007-11-14 09:31:26 +0000 |
commit | a660ece98c5a924a6dc29379419fdcb113451319 (patch) | |
tree | 748081a3931d031d8d32c6b8fc3663e730fdde08 /debian/rules | |
parent | 4f20864e604b53dc05dd02f46bf0fab9c3e207b3 (diff) |
* Don't build PIE executables on m68k (closes: #451192).
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 2 |
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),) | |||
30 | endif | 30 | endif |
31 | 31 | ||
32 | ifneq (,$(findstring :$(DEB_HOST_ARCH_OS):,:linux:knetbsd:)) | 32 | ifneq (,$(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 |