Make alternative scriptlet less noisy (Ralph Bean)
This commit is contained in:
parent
dc3bf25c60
commit
e21ea6479f
11
vala.spec
11
vala.spec
@ -190,7 +190,7 @@ cp -p %{SOURCE2} $RPM_BUILD_ROOT%{_emacs_sitestartdir}
|
||||
/sbin/ldconfig
|
||||
for f in %{vala_binaries};
|
||||
do
|
||||
if find -L /etc/alternatives/$f -type l | grep $f;
|
||||
if [ -L /etc/alternatives/$f ];
|
||||
then
|
||||
# older vala packages fail to remove alternatives on upgrade
|
||||
%{_sbindir}/alternatives --remove $f $(readlink /etc/alternatives/$f)
|
||||
@ -200,7 +200,7 @@ do
|
||||
done
|
||||
for f in %{vala_manpages};
|
||||
do
|
||||
if find -L /etc/alternatives/$f -type l | grep $f;
|
||||
if [ -L /etc/alternatives/$f ];
|
||||
then
|
||||
%{_sbindir}/alternatives --remove $f $(readlink /etc/alternatives/$f)
|
||||
fi
|
||||
@ -211,7 +211,7 @@ done
|
||||
%posttrans tools
|
||||
for f in %{vala_tools_binaries};
|
||||
do
|
||||
if find -L /etc/alternatives/$f -type l | grep $f;
|
||||
if [ -L /etc/alternatives/$f ];
|
||||
then
|
||||
%{_sbindir}/alternatives --remove $f $(readlink /etc/alternatives/$f)
|
||||
fi
|
||||
@ -220,7 +220,7 @@ do
|
||||
done
|
||||
for f in %{vala_tools_manpages};
|
||||
do
|
||||
if find -L /etc/alternatives/$f -type l | grep $f;
|
||||
if [ -L /etc/alternatives/$f ];
|
||||
then
|
||||
%{_sbindir}/alternatives --remove $f $(readlink /etc/alternatives/$f)
|
||||
fi
|
||||
@ -305,8 +305,9 @@ done
|
||||
|
||||
|
||||
%changelog
|
||||
* Sat May 5 2012 Michel Salim <salimma@fedoraproject.org> - 0.17.0-2
|
||||
* Fri May 11 2012 Michel Salim <salimma@fedoraproject.org> - 0.17.0-2
|
||||
- Spec clean-ups
|
||||
- Make alternative scriptlet less noisy (Ralph Bean)
|
||||
|
||||
* Thu May 3 2012 Michel Salim <salimma@fedoraproject.org> - 0.17.0-1
|
||||
- Update to 0.17.0
|
||||
|
Loading…
Reference in New Issue
Block a user