Status: New Owner: ---- Labels: Type-Defect Priority-Medium
New issue 883 by [email protected]: Porable fix for ibus-anthy configure script http://code.google.com/p/ibus/issues/detail?id=883 What version of the product are you using? On what operating system? OS (Linux distributions, UNIX or ...): NetBSD Architecture (i386, x86_64): i386 IBus version: 1.3.2 Input method name and version: ibus-anthy-1.2.1 Python version: N/A dbus version: N/A dbus-python version: N/A gtk version (if bug is about gtk applications): qt version (if bug is about qt applications): What steps will reproduce the problem? 1. operator of `==' for `test' command is not portable. 2. do configure with environment that `test' command does not recognize `==' operator 3. result in unexpected situation. What is the expected output? What do you see instead? `==' should not be used, replaced with `=' instead. Please provide any additional information below. in configure.ac, there are two `==' operator are used for `test': if test x"$SWIG" == x""; then if test x"$PYTHON_CONFIG" == x""; then those are should be changed as following: if test x"$SWIG" = x""; then if test x"$PYTHON_CONFIG" = x""; then -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings -- You received this message because you are subscribed to the Google Groups "ibus-devel" group. iBus project web page: http://code.google.com/p/ibus/ iBus dev group: http://groups.google.com/group/ibus-devel?hl=en
