diff --git a/x11-tools.changes b/x11-tools.changes index eeae36c..a945a1d 100644 --- a/x11-tools.changes +++ b/x11-tools.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Sun Aug 9 12:55:18 UTC 2015 - ftake@geeko.jp + +- fix a bashism in xim (boo#941052) + ------------------------------------------------------------------- Fri Jul 3 20:24:13 UTC 2015 - eich@suse.com diff --git a/xim b/xim index 5cac093..ce661b2 100644 --- a/xim +++ b/xim @@ -170,7 +170,7 @@ tmplang=${LC_ALL-${LC_CTYPE-${LANG-en_US}}} echo "Trying to start a default input method for the locale $tmplang ..." subdirlist=$tmplang -while [ "$tmplang" != ${tmplang%[_.@]*} ] +while [ "$tmplang" != "${tmplang%[_.@]*}" ] do tmplang=${tmplang%[_.@]*} subdirlist="$subdirlist $tmplang"