diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2013-01-20 23:42:12 -0600 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-01-21 08:31:58 +0000 |
commit | 75e32e150133511d8f098a253a56426ed0302cec (patch) | |
tree | 26bf6d6fd15cce47f111d1a6dffb86849e727935 /configure.ac | |
parent | 7907cc0ef9751d553014bd3bab49be9e7fc31bca (diff) |
default to --without-help and --without-myspell-dicts
Updated the distro-configs so that the default change
does not impact build based on distro profile
The intent is that with this change of defaults
the build does only rely on core and does not need
any submodules. Making a initial build simpler
for new dev, since they won't be exposed to submodules
unless they really need them.
Change-Id: I446e912d607ce7358fd11f54a3de025dc3f25144
Reviewed-on: https://gerrit.libreoffice.org/1791
Reviewed-by: Tor Lillqvist <tml@iki.fi>
Tested-by: Tor Lillqvist <tml@iki.fi>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 7f001a663663..23ebf23562ba 100644 --- a/configure.ac +++ b/configure.ac @@ -4503,7 +4503,7 @@ fi AC_SUBST(DO_FETCH_TARBALLS) AC_MSG_CHECKING([whether to build help]) -if test "$with_help" != "no" -a $_os != iOS -a $_os != Android; then +if test "$with_help" = "yes" -a $_os != iOS -a $_os != Android; then AC_MSG_RESULT([yes]) BUILD_TYPE="$BUILD_TYPE HELP" SCPDEFS="$SCPDEFS -DWITH_HELP" @@ -4515,7 +4515,7 @@ fi dnl Test whether to include MySpell dictionaries dnl =================================================================== AC_MSG_CHECKING([whether to include MySpell dictionaries]) -if test -z "$with_myspell_dicts" -o "$with_myspell_dicts" = "yes"; then +if test "$with_myspell_dicts" = "yes"; then AC_MSG_RESULT([yes]) WITH_MYSPELL_DICTS=YES BUILD_TYPE="$BUILD_TYPE DICTIONARIES" |