diff options
author | Pierre Pronchery <khorben@defora.org> | 2017-03-23 15:15:22 +0100 |
---|---|---|
committer | TingPing <tingping@tingping.se> | 2017-03-23 17:25:36 -0400 |
commit | 2f0239eb1891ff84e29a24513b832d1278eddd93 (patch) | |
tree | 9139286c314efc4bb6396eb216ecb7de12ef8a2b /configure.ac | |
parent | 99bdc4f2514bda980fcf9cd8f4a122b2fbee1cf0 (diff) |
Fix bashism
From tnn@ of NetBSD.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index d4357893..fc4f8e77 100644 --- a/configure.ac +++ b/configure.ac @@ -605,7 +605,7 @@ AM_CONDITIONAL(USE_DBUS, test "x$dbus" = "xyes") AM_CONDITIONAL(HAVE_ISO_CODES, test "x$isocodes" = "xyes") AM_CONDITIONAL(HAVE_GTK_MAC, test "x$_gdk_tgt" = xquartz) AM_CONDITIONAL(WITH_TM, test "x$theme_manager" != "xno") -AM_CONDITIONAL(PLATFORM_OSX, test "x$platform_osx" == "xyes") +AM_CONDITIONAL(PLATFORM_OSX, test "x$platform_osx" = "xyes") dnl ********************************************************************* dnl ** CFLAGS *********************************************************** |