summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog6
-rwxr-xr-xdebian/rules2
2 files changed, 7 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 88aa405d3..bc53e052c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
1openssh (1:4.6p1-7) UNRELEASED; urgency=low
2
3 * Don't build PIE executables on m68k (closes: #451192).
4
5 -- Colin Watson <cjwatson@debian.org> Wed, 14 Nov 2007 09:30:36 +0000
6
1openssh (1:4.6p1-6) unstable; urgency=low 7openssh (1:4.6p1-6) unstable; urgency=low
2 8
3 * Remove blank line between head comment and first template in 9 * Remove blank line between head comment and first template in
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