diff options
author | Owen Taylor <otaylor@redhat.com> | 2002-05-05 19:57:10 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2002-05-05 19:57:10 +0000 |
commit | 1cdfacebb63dd2c2e2d2be46d1a34b594453ad1a (patch) | |
tree | 984346c8e575f8adf8c25c11576bd4d6f28cb4a2 /configure.in | |
parent | acce60b7991807719de78995fb733f3573e2ecfb (diff) | |
download | gtk+-1cdfacebb63dd2c2e2d2be46d1a34b594453ad1a.tar.gz |
Fix problem with == in test argument. (#80732, Hidetoshi Tajima)
Sun May 5 15:56:50 2002 Owen Taylor <otaylor@redhat.com>
* configure.in: Fix problem with == in test argument.
(#80732, Hidetoshi Tajima)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index a897d7ffd3..41bad0a336 100644 --- a/configure.in +++ b/configure.in @@ -1027,7 +1027,7 @@ if test "x$gdktarget" = "xx11"; then use_solaris_xinerama=yes AC_CHECK_LIB(Xext, XineramaGetInfo, use_solaris_xinerama=yes, use_solaris_xinerama=no) - if test "x$use_solaris_xinerama" == "xyes"; then + if test "x$use_solaris_xinerama" = "xyes"; then AC_CHECK_HEADER(X11/extensions/xinerama.h, if test -z "`echo $x_extra_libs $x_libs | grep "\-lXext" 2> /dev/null`"; then x_extra_libs="-lXext $x_extra_libs" |