diff options
author | Patrick Welche <prlw1@cam.ac.uk> | 2013-04-20 10:29:44 +0100 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2013-04-20 09:50:20 -0400 |
commit | 82870258bb3e8a284d893ac46a6afc2dd426d49a (patch) | |
tree | f5fc8814ee0ab1d35cc98b0220a936ba64d54d27 /m4/python.m4 | |
parent | a09072bd1f75dfc7497ed599e03e331bff411fd4 (diff) | |
download | gobject-introspection-82870258bb3e8a284d893ac46a6afc2dd426d49a.tar.gz |
test(1) uses '=' to test if strings are identical
https://bugzilla.gnome.org/show_bug.cgi?id=698438
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 cdd586c4..ed5559da 100644 --- a/m4/python.m4 +++ b/m4/python.m4 @@ -63,7 +63,7 @@ AC_DEFUN([AM_CHECK_PYTHON_LIBS], [AC_REQUIRE([AM_CHECK_PYTHON_HEADERS]) AC_MSG_CHECKING(for libraries required to link against libpython) dnl deduce PYTHON_LIBS -if test "x$PYTHON_LIBS" == x; then +if test "x$PYTHON_LIBS" = x; then PYTHON_LIBS=`$PYTHON-config --ldflags --libs` fi AC_SUBST(PYTHON_LIBS) |