- fix symbolic links to the shared libs
This commit is contained in:
parent
ce3b97bbce
commit
2bd1c23264
@ -3,7 +3,7 @@
|
|||||||
Name: boost
|
Name: boost
|
||||||
Summary: The Boost C++ Libraries
|
Summary: The Boost C++ Libraries
|
||||||
Version: 1.33.1
|
Version: 1.33.1
|
||||||
Release: 4.2
|
Release: 5
|
||||||
License: Boost Software License
|
License: Boost Software License
|
||||||
URL: http://www.boost.org/
|
URL: http://www.boost.org/
|
||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
@ -111,7 +111,7 @@ done;
|
|||||||
for i in `find stage -type l -name \*.so`; do
|
for i in `find stage -type l -name \*.so`; do
|
||||||
NAME=`basename $i`;
|
NAME=`basename $i`;
|
||||||
SONAME=$NAME.2;
|
SONAME=$NAME.2;
|
||||||
ln -s $NAME.* $SONAME;
|
ln -s $NAME.%{version} $SONAME;
|
||||||
mv $SONAME $RPM_BUILD_ROOT%{_libdir}/$SONAME;
|
mv $SONAME $RPM_BUILD_ROOT%{_libdir}/$SONAME;
|
||||||
mv $i $RPM_BUILD_ROOT%{_libdir}/$NAME;
|
mv $i $RPM_BUILD_ROOT%{_libdir}/$NAME;
|
||||||
done;
|
done;
|
||||||
@ -159,6 +159,9 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_docdir}/boost-%{version}
|
%{_docdir}/boost-%{version}
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Feb 16 2006 Florian La Roche <laroche@redhat.com> - 1.33.1-5
|
||||||
|
- use the real version number to point to the shared libs
|
||||||
|
|
||||||
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.33.1-4.2
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.33.1-4.2
|
||||||
- bump again for double-long bug on ppc(64)
|
- bump again for double-long bug on ppc(64)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user