summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Klausner <wiz@danbala.tuwien.ac.at>2011-03-05 09:18:42 +0100
committerDavid King <davidk@openismus.com>2011-03-05 09:18:42 +0100
commitbfb722aa8e19f2d404c54c2644b4a06af8fa37c6 (patch)
tree3fdbf6b1ab6a5fc0942f73b813d34fd1e205518a
parente6a5b2472a4a5d554b587dfcb798b95035caa6fd (diff)
downloadgdk-pixbuf-bfb722aa8e19f2d404c54c2644b4a06af8fa37c6.tar.gz
Fix unportable test construct in configure
Fixes bug 640407.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index b17ba8420..161908d90 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1011,7 +1011,7 @@ AC_ARG_ENABLE(Bsymbolic,
enable_Bsymbolic=no)
LDFLAGS="${SAVED_LDFLAGS}"])
-if test "x${enable_Bsymbolic}" == "xyes"; then
+if test "x${enable_Bsymbolic}" = "xyes"; then
GDK_PIXBUF_LINK_FLAGS=-Wl,-Bsymbolic-functions
fi