]> git.lyx.org Git - lyx.git/commitdiff
updates to --enable-monolithic-build code
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Thu, 9 Apr 2009 16:25:26 +0000 (16:25 +0000)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Thu, 9 Apr 2009 16:25:26 +0000 (16:25 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29160 a592a061-630c-0410-9148-cb99ea01b6c8

INSTALL
configure.ac

diff --git a/INSTALL b/INSTALL
index 24c55ea10c23cdbfecdfdfd484a8771558628783..1a84843ac517db204d8b74d25b147d8f7a1a8cf1 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -250,9 +250,9 @@ The following options allow to tweak more precisely the generated code:
     frontend for now.
 
   o --enable-monolithic-build[=boost,client,insets,mathed,core,tex2lyx,frontend-qt4]
-    that enable monolithic build of the given parts of the source code. This
-    should reduce the compilation time provided you have enough memory
-    (>500MB).
+    that enables monolithic build of the given parts of the source
+    code. This should reduce the compilation time provided you have
+    enough memory (>500MB).
 
 
 Compiling and installing LyX
index 38b20870b4308519b5f09efc33ee51fcd8d1c529..5d4a100989b96ff9fa08e06bf068d9fad9e27693 100644 (file)
@@ -398,13 +398,13 @@ AC_ARG_ENABLE(monolithic-build,
    IFS="$ac_save_ifs"],
   [enable_monolithic_build=])
 
-AM_CONDITIONAL(MONOLITHIC_BOOST, test -n "$enable_monolithic_boost")
-AM_CONDITIONAL(MONOLITHIC_CLIENT, test -n "$enable_monolithic_client")
-AM_CONDITIONAL(MONOLITHIC_INSETS, test -n "$enable_monolithic_insets")
-AM_CONDITIONAL(MONOLITHIC_MATHED, test -n "$enable_monolithic_mathed")
-AM_CONDITIONAL(MONOLITHIC_CORE, test -n "$enable_monolithic_core")
-AM_CONDITIONAL(MONOLITHIC_TEX2LYX, test -n "$enable_monolithic_tex2lyx")
-AM_CONDITIONAL(MONOLITHIC_FRONTEND_QT4, test -n "$enable_monolithic_frontend_qt4")
+AM_CONDITIONAL(MONOLITHIC_BOOST, test "x$enable_monolithic_boost" = "xyes")
+AM_CONDITIONAL(MONOLITHIC_CLIENT, test "x$enable_monolithic_client" = "xyes")
+AM_CONDITIONAL(MONOLITHIC_INSETS, test "x$enable_monolithic_insets" = "xyes")
+AM_CONDITIONAL(MONOLITHIC_MATHED, test "x$enable_monolithic_mathed" = "xyes")
+AM_CONDITIONAL(MONOLITHIC_CORE, test "x$enable_monolithic_core" = "xyes")
+AM_CONDITIONAL(MONOLITHIC_TEX2LYX, test "x$enable_monolithic_tex2lyx" = "xyes")
+AM_CONDITIONAL(MONOLITHIC_FRONTEND_QT4, test "x$enable_monolithic_frontend_qt4" = "xyes")
 
 MSYS_AC_CANONICAL_PATH(lyx_abs_top_srcdir, ${srcdir})
 MSYS_AC_CANONICAL_PATH(lyx_abs_installed_localedir, ${real_localedir})