diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-03-10 23:10:12 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-03-11 11:57:17 +0100 |
commit | 0afb3a7f45f423a43bbac366753cb732f4a54779 (patch) | |
tree | bbda610b1bcf67037fa275960e0b0db4e5b7b8fc | |
parent | 7f61c038a0c7ad1693b4efb75d808290f1ee3931 (diff) |
normalize values of HAVE_GNUMAKE_FILE_FUNC/WITH_MYSPELL_DICTS
Change-Id: Ie8e6858194f4081e080f67a9af88108f10e1c503
-rw-r--r-- | configure.ac | 6 | ||||
-rw-r--r-- | solenv/gbuild/Tempfile.mk | 2 |
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 |