mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
Issue #474: reverse logic.
This commit is contained in:
parent
ca766b4ed7
commit
5815dc7b75
1 changed files with 5 additions and 5 deletions
10
configure.ac
10
configure.ac
|
@ -57,8 +57,8 @@ AC_ARG_ENABLE(asan,
|
||||||
dnl --------------------------------------------------------------------
|
dnl --------------------------------------------------------------------
|
||||||
dnl DRun dialog
|
dnl DRun dialog
|
||||||
dnl --------------------------------------------------------------------
|
dnl --------------------------------------------------------------------
|
||||||
AC_ARG_ENABLE([drun], AC_HELP_STRING([--enable-drun],[Enable desktop file run dialog]))
|
AC_ARG_ENABLE([drun], AC_HELP_STRING([--disable-drun],[Disable desktop file run dialog]))
|
||||||
AS_IF([test "x${enable_drun}" == "xyes"], [AC_DEFINE([ENABLE_DRUN], [1], [Enable desktop file run dialog])])
|
AS_IF([test "x${enable_drun}" != "xno"], [AC_DEFINE([ENABLE_DRUN], [1], [Enable desktop file run dialog])])
|
||||||
dnl ---------------------------------------------------------------------
|
dnl ---------------------------------------------------------------------
|
||||||
dnl Disable window mode
|
dnl Disable window mode
|
||||||
dnl ---------------------------------------------------------------------
|
dnl ---------------------------------------------------------------------
|
||||||
|
@ -119,10 +119,10 @@ echo "Timing output: Enabled"
|
||||||
else
|
else
|
||||||
echo "Timing output: Disabled"
|
echo "Timing output: Disabled"
|
||||||
fi
|
fi
|
||||||
if test x$enable_drun = xyes; then
|
if test x$enable_drun != xno; then
|
||||||
echo "Desktop File run dialog Enabled"
|
echo "Desktop File drun dialog Enabled"
|
||||||
else
|
else
|
||||||
echo "Desktop File run dialog Disabled"
|
echo "Desktop File drun dialog Disabled"
|
||||||
fi
|
fi
|
||||||
if test x$enable_windowmode != xno; then
|
if test x$enable_windowmode != xno; then
|
||||||
echo "Window Switcher dialog Enabled"
|
echo "Window Switcher dialog Enabled"
|
||||||
|
|
Loading…
Reference in a new issue