diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 08:23:18 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 08:23:18 +0000 |
commit | a598ae3ee009e375186625b34440bb06bc330dda (patch) | |
tree | 0a6eae443d047346a6ccf4d3d80fd12579a8694e /debian/rules | |
parent | Releasing progress-linux version 1:9.7p1-3~progress7.99u1. (diff) | |
download | openssh-a598ae3ee009e375186625b34440bb06bc330dda.tar.xz openssh-a598ae3ee009e375186625b34440bb06bc330dda.zip |
Merging debian version 1:9.7p1-4.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index 6184bef..6431a78 100755 --- a/debian/rules +++ b/debian/rules @@ -68,6 +68,12 @@ endif # Always use the internal mkdtemp; see https://bugs.debian.org/1001186. confflags += ac_cv_func_mkdtemp=no +# ppc64el doesn't support -fzero-call-used-regs=used, but configure fails to +# detect that. +ifeq ($(DEB_HOST_ARCH),ppc64el) +confflags += ossh_cv_cflag__fzero_call_used_regs_used=no +endif + # Everything above here is common to the deb and udeb builds. confflags_udeb := $(confflags) @@ -80,7 +86,6 @@ confflags += --with-ssl-engine ifeq ($(DEB_HOST_ARCH_OS),linux) confflags += --with-selinux confflags += --with-audit=linux -confflags += --with-systemd confflags += --with-security-key-builtin endif |