From 8049513b88e6fe58c680e81e911e6f20ee29e3d4 Mon Sep 17 00:00:00 2001 From: Koop Mast Date: Sat, 8 Jan 2011 02:16:19 +0000 Subject: [PATCH] configure: fix bash-ism https://bugzilla.gnome.org/show_bug.cgi?id=638961 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 6478a6cb75..4477041a8b 100644 --- a/configure.ac +++ b/configure.ac @@ -892,7 +892,7 @@ AC_SUBST(GST_LIBS) dnl LDFLAGS really should only contain flags, not libs - they get added before dnl whatevertarget_LIBS and -L flags here affect the rest of the linking GST_ALL_LDFLAGS="-no-undefined" -if test "x${enable_Bsymbolic}" == "xyes"; then +if test "x${enable_Bsymbolic}" = "xyes"; then GST_ALL_LDFLAGS="$GST_ALL_LDFLAGS -Wl,-Bsymbolic-functions" fi AC_SUBST(GST_ALL_LDFLAGS)