diff options
author | Martin Wimpress <[email protected]> | 2015-06-27 08:12:56 +0100 |
---|---|---|
committer | Martin Wimpress <[email protected]> | 2015-06-27 08:12:56 +0100 |
commit | f286e7683b4ed8103938c6c725f6755c9b8c912b (patch) | |
tree | d88bbd090eb6beb062bba4c5d5eb1a99be6689ab /m4/python.m4 | |
parent | e37194f78e109894f546ab996abc6309b8de3a92 (diff) | |
parent | e6a6225b882c4c58a0ba7e333bda5cd6abf0c19a (diff) | |
download | mate-menus-f286e7683b4ed8103938c6c725f6755c9b8c912b.tar.bz2 mate-menus-f286e7683b4ed8103938c6c725f6755c9b8c912b.tar.xz |
Merge pull request #30 from obache/neatsrc
Fix bash-izm of '==' operator usage for test(1)
Diffstat (limited to 'm4/python.m4')
-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; |