- even more robust test for the temporary symlinks
This commit is contained in:
parent
b33a50c5b2
commit
ebd2901e1d
15
openssl.spec
15
openssl.spec
@ -23,7 +23,7 @@
|
|||||||
Summary: A general purpose cryptography library with TLS implementation
|
Summary: A general purpose cryptography library with TLS implementation
|
||||||
Name: openssl
|
Name: openssl
|
||||||
Version: 0.9.8j
|
Version: 0.9.8j
|
||||||
Release: 2%{?dist}
|
Release: 3%{?dist}
|
||||||
# We remove certain patented algorithms from the openssl source tarball
|
# We remove certain patented algorithms from the openssl source tarball
|
||||||
# with the hobble-openssl script which is included below.
|
# with the hobble-openssl script which is included below.
|
||||||
Source: openssl-%{version}-usa.tar.bz2
|
Source: openssl-%{version}-usa.tar.bz2
|
||||||
@ -75,7 +75,7 @@ BuildRequires: pkgconfig
|
|||||||
Requires: mktemp, ca-certificates >= 2008-5
|
Requires: mktemp, ca-certificates >= 2008-5
|
||||||
|
|
||||||
# Temporary hack
|
# Temporary hack
|
||||||
Requires(post): /sbin/ldconfig
|
Requires(post): /sbin/ldconfig coreutils
|
||||||
Requires(postun): /sbin/ldconfig
|
Requires(postun): /sbin/ldconfig
|
||||||
%ifarch ppc64 s390x sparc64 x86_64
|
%ifarch ppc64 s390x sparc64 x86_64
|
||||||
Provides: libcrypto.so.7()(64bit) libssl.so.7()(64bit)
|
Provides: libcrypto.so.7()(64bit) libssl.so.7()(64bit)
|
||||||
@ -400,11 +400,11 @@ rm -rf $RPM_BUILD_ROOT/%{_libdir}/fipscanister.*
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%post
|
%post
|
||||||
if [ ! -h /%{_lib}/libcrypto.so.7 ] ; then
|
if [ "$(readlink /%{_lib}/libcrypto.so.7)" != libcrypto.so.%{version} ] ; then
|
||||||
ln -s libcrypto.so.%{version} /%{_lib}/libcrypto.so.7 || :
|
ln -sf libcrypto.so.%{version} /%{_lib}/libcrypto.so.7 || :
|
||||||
fi
|
fi
|
||||||
if [ ! -h /%{_lib}/libssl.so.7 ] ; then
|
if [ "$(readlink /%{_lib}/libssl.so.7)" != libssl.so.%{version} ] ; then
|
||||||
ln -s libssl.so.%{version} /%{_lib}/libssl.so.7 || :
|
ln -sf libssl.so.%{version} /%{_lib}/libssl.so.7 || :
|
||||||
fi
|
fi
|
||||||
/sbin/ldconfig -X
|
/sbin/ldconfig -X
|
||||||
|
|
||||||
@ -412,6 +412,9 @@ fi
|
|||||||
/sbin/ldconfig -X
|
/sbin/ldconfig -X
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Jan 16 2009 Tomas Mraz <tmraz@redhat.com> 0.9.8j-3
|
||||||
|
- even more robust test for the temporary symlinks
|
||||||
|
|
||||||
* Fri Jan 16 2009 Tomas Mraz <tmraz@redhat.com> 0.9.8j-2
|
* Fri Jan 16 2009 Tomas Mraz <tmraz@redhat.com> 0.9.8j-2
|
||||||
- try to ensure the temporary symlinks exist
|
- try to ensure the temporary symlinks exist
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user