diff options
author | OBATA Akio <[email protected]> | 2015-06-27 14:23:48 +0900 |
---|---|---|
committer | OBATA Akio <[email protected]> | 2015-06-27 14:23:48 +0900 |
commit | e6a6225b882c4c58a0ba7e333bda5cd6abf0c19a (patch) | |
tree | d88bbd090eb6beb062bba4c5d5eb1a99be6689ab | |
parent | e37194f78e109894f546ab996abc6309b8de3a92 (diff) | |
download | mate-menus-e6a6225b882c4c58a0ba7e333bda5cd6abf0c19a.tar.bz2 mate-menus-e6a6225b882c4c58a0ba7e333bda5cd6abf0c19a.tar.xz |
Fix bash-izm of '==' operator usage for test(1)
-rw-r--r-- | m4/python.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/python.m4 b/m4/python.m4 index deb3269..dc2e750 100644 --- a/m4/python.m4 +++ b/m4/python.m4 @@ -34,7 +34,7 @@ AC_MSG_CHECKING(for python libraries) dnl Check whether python was compiled as shared library link_pymodules_libpython=false; py_enable_shared=`$PYTHON -c "from distutils.sysconfig import get_config_var; print repr(get_config_var('Py_ENABLE_SHARED'))"` -if test $py_enable_shared == 1 ; then +if test $py_enable_shared = 1 ; then if test x`uname -s` != xDarwin; then PYTHON_LDFLAGS="-no-undefined" link_pymodules_libpython=true; |