summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarsten Hopp <karsten@redhat.com>2014-02-17 14:26:40 +0100
committerKarsten Hopp <karsten@redhat.com>2014-02-17 14:26:40 +0100
commit0816533a631586044ad3f572967f648a69285365 (patch)
tree3ea66b99796ea50221bd23460bb1b259684932e8
parentfix a use after free in channel.c (diff)
downloadlibssh2-freefilesync-0816533a631586044ad3f572967f648a69285365.tar.gz
libssh2-freefilesync-0816533a631586044ad3f572967f648a69285365.tar.bz2
libssh2-freefilesync-0816533a631586044ad3f572967f648a69285365.zip
skip self checks on ppc*
-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