From 057d0bb21a41f635eecc9c86ab7dd88bea4f522b7d665f454d97ffa56b380159 Mon Sep 17 00:00:00 2001 From: Luca Beltrame Date: Fri, 10 Jan 2014 19:40:14 +0000 Subject: [PATCH] - Fix SNAFU in preun scriptlet (missing spaces) OBS-URL: https://build.opensuse.org/package/show/KDE:Qt/python-sip?expand=0&rev=114 --- python-sip.changes | 5 +++++ python-sip.spec | 2 +- python3-sip.changes | 5 +++++ python3-sip.spec | 2 +- 4 files changed, 12 insertions(+), 2 deletions(-) diff --git a/python-sip.changes b/python-sip.changes index bf76c39..7c24db5 100644 --- a/python-sip.changes +++ b/python-sip.changes @@ -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 diff --git a/python-sip.spec b/python-sip.spec index 3c4676c..55c3c04 100644 --- a/python-sip.spec +++ b/python-sip.spec @@ -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 diff --git a/python3-sip.changes b/python3-sip.changes index cc1dc22..66b41cd 100644 --- a/python3-sip.changes +++ b/python3-sip.changes @@ -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 diff --git a/python3-sip.spec b/python3-sip.spec index b910995..598d1f7 100644 --- a/python3-sip.spec +++ b/python3-sip.spec @@ -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