aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Lund Steffensen <jonlst@gmail.com>2013-12-08 14:32:31 -0500
committerJon Lund Steffensen <jonlst@gmail.com>2013-12-08 14:32:31 -0500
commit1a8a6ec23096f80abf185efd7c724a44b1a7fa60 (patch)
tree26f6c203449941ad9b22ce0ce297d92ac241c031
parentClean up install instructions in README, INSTALL, HACKING (diff)
downloadredshift-ng-1a8a6ec23096f80abf185efd7c724a44b1a7fa60.tar.gz
redshift-ng-1a8a6ec23096f80abf185efd7c724a44b1a7fa60.tar.bz2
redshift-ng-1a8a6ec23096f80abf185efd7c724a44b1a7fa60.tar.xz
Fix configure script status output for GUI
-rw-r--r--configure.ac2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 2a0a6de..a98c865 100644
--- a/configure.ac
+++ b/configure.ac
@@ -165,6 +165,7 @@ AC_ARG_ENABLE([gui], [AC_HELP_STRING([--enable-gui],
AS_IF([test "x$enable_gui" != xno], [
AS_IF([test $have_python = yes], [
AC_MSG_RESULT([yes])
+ enable_gui=yes
], [
AC_MSG_RESULT([missing dependencies])
AS_IF([test "x$enable_gui" = xyes], [
@@ -174,6 +175,7 @@ AS_IF([test "x$enable_gui" != xno], [
])
], [
AC_MSG_RESULT([no])
+ enable_gui=no
])
AM_CONDITIONAL([ENABLE_GUI], [test "x$enable_gui" != xno])