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.
This commit is contained in:
Tanu Kaskinen 2018-04-17 09:07:37 +03:00
parent 890bc108d6
commit f5ff5d8bf2

View file

@ -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