summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPerberos <[email protected]>2012-10-16 17:51:56 -0300
committerPerberos <[email protected]>2012-10-16 17:51:56 -0300
commit405535e24d270d9f49413546ddcba78f8a338a8b (patch)
treef844c4a645658631c9b27a37ec202f6b51f95f0d
parent50f0c8f03ade84d548fda06c27cdc293d727d4be (diff)
downloadmate-desktop-405535e24d270d9f49413546ddcba78f8a338a8b.tar.bz2
mate-desktop-405535e24d270d9f49413546ddcba78f8a338a8b.tar.xz
wrong false true condition
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index b32699e..1d97c3d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -232,9 +232,9 @@ AM_GLIB_GNU_GETTEXT
AC_ARG_ENABLE([gnucat],
[AS_HELP_STRING([--disable-gnucat], [disable the use of gnu cat as logo])],
- [enable_gnucat=no], [enable_gnucat=yes])
+ [disable_gnucat=yes], [disable_gnucat=no])
-if test "x$enable_gnucat" = "xno"; then
+if test "x$disable_gnucat" = "xyes"; then
MATE_ABOUT_CFLAGS="$MATE_ABOUT_CFLAGS -DDISABLE_GNUCAT=1"
fi
@@ -342,5 +342,5 @@ mate-desktop $VERSION `echo mate-desktop $VERSION | sed "s/./=/g"`
Startup notification support: ${have_startup_notification}
XRandr support: ${have_randr}
Build gtk-doc documentation: ${enable_gtk_doc}
- Show gnucat: ${enable_gnucat}
+ Disable gnucat: ${disable_gnucat}
"