- Fix SNAFU in preun scriptlet (missing spaces)

OBS-URL: https://build.opensuse.org/package/show/KDE:Qt/python-sip?expand=0&rev=114
This commit is contained in:
Luca Beltrame
2014-01-10 19:40:14 +00:00
committed by Git OBS Bridge
parent 40bb38bebc
commit 057d0bb21a
4 changed files with 12 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Fri Jan 10 19:39:07 UTC 2014 - lbeltrame@kde.org
- Fix SNAFU in preun scriptlet (missing spaces)
-------------------------------------------------------------------
Thu Jan 9 20:06:06 UTC 2014 - lbeltrame@kde.org

View File

@@ -105,7 +105,7 @@ update-alternatives --install %{_bindir}/sip sip %{_bindir}/sip-%{py_ver} 50
%preun devel
if ["$1" = 0] ; then
if [ "$1" = 0 ] ; then
update-alternatives --remove sip %{_bindir}/sip-%{py_ver}
fi

View File

@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Fri Jan 10 19:39:29 UTC 2014 - lbeltrame@kde.org
- Fix SNAFU in preun scriptlet (missing spaces)
-------------------------------------------------------------------
Thu Jan 9 20:09:03 UTC 2014 - lbeltrame@kde.org

View File

@@ -109,7 +109,7 @@ update-alternatives --install %{_bindir}/sip sip %{_bindir}/sip-%{py3_ver} 40
%preun devel
if ["$1" = 0] ; then
if [ "$1" = 0 ] ; then
update-alternatives --remove sip %{_bindir}/sip-%{py3_ver}
fi