summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTanu Kaskinen <tanuk@iki.fi>2018-04-17 09:07:37 +0300
committerTanu Kaskinen <tanuk@iki.fi>2018-04-19 14:38:36 +0300
commitf5ff5d8bf21ebe4d50487079d2f3f3f2b5b446c0 (patch)
tree6fb18d6e3c43a90429dc442ac907b9cbf434b7e5
parent890bc108d61f2c6d37082771819435ae46616bbe (diff)
downloadpulseaudio-f5ff5d8bf21ebe4d50487079d2f3f3f2b5b446c0.tar.gz
build-sys: remove a redundant enable_gsettings check
If HAVE_GSETTINGS is 1, then enable_gsettings must be yes, so checking enable_gsettings isn't necessary.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 5720c28e4..2d3022e21 100644
--- a/configure.ac
+++ b/configure.ac
@@ -942,7 +942,7 @@ AS_IF([test "x$enable_gsettings" = "xyes" && test "x$HAVE_GSETTINGS" = "x0"],
AM_CONDITIONAL([HAVE_GSETTINGS], [test "x$HAVE_GSETTINGS" = x1])
AC_SUBST([HAVE_GSETTINGS])
-if test "x$enable_gsettings" = "xyes" && test "x$HAVE_GSETTINGS" = "x1" ; then
+if test "x$HAVE_GSETTINGS" = "x1" ; then
GLIB_GSETTINGS
fi