[ooo-build-commit] configure.in

Jan Holesovsky kendy at kemper.freedesktop.org
Wed Sep 2 09:03:22 PDT 2009


 configure.in |    1 +
 1 file changed, 1 insertion(+)

New commits:
commit 665b225ce9cc2aa73afdf035cd3c7a2322cf4a91
Author: Rail Aliev <rail at openoffice.org>
Date:   Tue Sep 1 23:53:56 2009 +0400

    Fix --without-split
    
    When --without-split is used, SPLIT variable is set to "no", while
    download(.in) expects an empty string.
    
    configure.in: reset SPLIT to "" when it's set to "no"

diff --git a/configure.in b/configure.in
index 464be3c..d9a5cd6 100644
--- a/configure.in
+++ b/configure.in
@@ -536,6 +536,7 @@ AC_MSG_CHECKING([for split sources])
 SPLIT=$with_split
 test -z "$SPLIT" && echo $CVSTAG | grep -q "dev300" && test `echo $CVSTAG | sed 's|dev300-m||'` -gt 21 && SPLIT=yes
 test -z "$SPLIT" && echo $CVSTAG | grep -q "ooo300" && SPLIT=yes
+test "$SPLIT" = "no" && SPLIT=
 AC_MSG_RESULT([${SPLIT:-no}])
 AC_SUBST(SPLIT)
 


More information about the ooo-build-commit mailing list