summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetr Mladek <pmladek@suse.cz>2010-12-17 23:09:16 +0100
committerPetr Mladek <pmladek@suse.cz>2010-12-17 23:09:16 +0100
commitc3d1cfde8e9b7cc628909fb19863a2430eeaf560 (patch)
treea1934fe984968d2abdfd8d8c34cdf279ca230569
parenta2698009ac3ac7f99ab4dffc9aac6df059d3adde (diff)
Integrate help by default
-rw-r--r--configure.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index 37514b5c4a4f..266f7e3eb144 100644
--- a/configure.in
+++ b/configure.in
@@ -512,9 +512,9 @@ AC_ARG_WITH(extension-integration,
AC_ARG_WITH(helppack-integration,
[
- --with-helppack-integration It will integrate the helppacks to the installer
+ --without-helppack-integration It will not integrate the helppacks to the installer
of the product.
- Please use this switch to include any helppack.],
+ Please use this switch to use the online help or separate help packages.],
,)
AC_ARG_WITH(fonts,
@@ -7127,7 +7127,7 @@ dnl ===================================================================
dnl Test whether to integrate helppacks into the product's installer
dnl ===================================================================
AC_MSG_CHECKING([for helppack integration])
-if test "z$with_helppack_integration" = "z" -o "z$with_helppack_integration" = "zno" ; then
+if test "z$with_helppack_integration" = "zno" ; then
WITH_HELPPACK_INTEGRATION=NO
AC_MSG_RESULT([no integration])
else