diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 08:23:06 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 08:23:06 +0000 |
commit | 6fe269b1f75c6bdcb92577f9bf37359711336cf2 (patch) | |
tree | 0d36686b619c4305279af667017ac148b2aae6f9 /debian/rules | |
parent | Adding debian version 1:9.7p1-3. (diff) | |
download | openssh-debian/1%9.7p1-4.tar.xz openssh-debian/1%9.7p1-4.zip |
Adding debian version 1:9.7p1-4.debian/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 fd9ab8d..ad0b683 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 |