summaryrefslogtreecommitdiff
path: root/libssh2.spec
diff options
context:
space:
mode:
Diffstat (limited to 'libssh2.spec')
-rw-r--r--libssh2.spec9
1 files changed, 6 insertions, 3 deletions
diff --git a/libssh2.spec b/libssh2.spec
index 9536806..37d6ebc 100644
--- a/libssh2.spec
+++ b/libssh2.spec
@@ -12,7 +12,7 @@
Name: libssh2
Version: 1.4.3
-Release: 8%{?dist}
+Release: 9%{?dist}
Summary: A library implementing the SSH2 protocol
Group: System Environment/Libraries
License: BSD
@@ -122,8 +122,8 @@ if [ ! -c /dev/tty ]; then
echo Skipping SSH test due to missing /dev/tty
echo "exit 0" > tests/ssh2.sh
fi
-# Apparently it fails in the sparc and arm buildsystems too
-%ifarch %{sparc} %{arm}
+# Apparently it fails in the sparc, ppc* and arm buildsystems too
+%ifarch %{sparc} %{arm} ppc %{power64}
echo Skipping SSH test on sparc/arm
echo "exit 0" > tests/ssh2.sh
%endif
@@ -154,6 +154,9 @@ rm -rf %{buildroot}
%{_libdir}/pkgconfig/libssh2.pc
%changelog
+* Mon Feb 17 2014 Karsten Hopp <karsten@redhat.com> 1.4.3-9
+- skip self checks on ppc*
+
* Wed Aug 14 2013 Kamil Dudka <kdudka@redhat.com> 1.4.3-8
- fix very slow sftp upload to localhost
- fix a use after free in channel.c
bgstack15