diff options
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 |