summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac6
-rw-r--r--solenv/gbuild/Tempfile.mk2
2 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 0f2106b926bb..e184bc116313 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4819,12 +4819,12 @@ dnl ===================================================================
AC_MSG_CHECKING([whether to include MySpell dictionaries])
if test "$with_myspell_dicts" = "yes"; then
AC_MSG_RESULT([yes])
- WITH_MYSPELL_DICTS=YES
+ WITH_MYSPELL_DICTS=TRUE
BUILD_TYPE="$BUILD_TYPE DICTIONARIES"
GIT_NEEDED_SUBMODULES="dictionaries $GIT_NEEDED_SUBMODULES"
else
AC_MSG_RESULT([no])
- WITH_MYSPELL_DICTS=NO
+ WITH_MYSPELL_DICTS=
fi
AC_SUBST(WITH_MYSPELL_DICTS)
@@ -4993,7 +4993,7 @@ all:
EOF
$GNUMAKE -C $TESTGMAKEFILEFUNC 2>/dev/null 1>&2
if test -f $TESTGMAKEFILEFUNC/test.txt; then
- HAVE_GNUMAKE_FILE_FUNC="YES"
+ HAVE_GNUMAKE_FILE_FUNC=TRUE
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
diff --git a/solenv/gbuild/Tempfile.mk b/solenv/gbuild/Tempfile.mk
index 3d07d6e538d2..d10e1d2d1fe0 100644
--- a/solenv/gbuild/Tempfile.mk
+++ b/solenv/gbuild/Tempfile.mk
@@ -17,7 +17,7 @@
# the License at http://www.apache.org/licenses/LICENSE-2.0 .
#
-ifeq ($(HAVE_GNUMAKE_FILE_FUNC),YES)
+ifneq ($(HAVE_GNUMAKE_FILE_FUNC),)
define var2file
$(file >$(1),$(3))$(1)
endef