summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOBATA Akio <[email protected]>2015-06-27 14:23:48 +0900
committerOBATA Akio <[email protected]>2015-06-27 14:23:48 +0900
commite6a6225b882c4c58a0ba7e333bda5cd6abf0c19a (patch)
treed88bbd090eb6beb062bba4c5d5eb1a99be6689ab
parente37194f78e109894f546ab996abc6309b8de3a92 (diff)
downloadmate-menus-e6a6225b882c4c58a0ba7e333bda5cd6abf0c19a.tar.bz2
mate-menus-e6a6225b882c4c58a0ba7e333bda5cd6abf0c19a.tar.xz
Fix bash-izm of '==' operator usage for test(1)
-rw-r--r--m4/python.m42
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;