[PATCH] Fix --whitout-split
Rail Aliev
rail at openoffice.org
Tue Sep 1 12:53:56 PDT 2009
When --whitout-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"
---
configure.in | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/configure.in b/configure.in
index a25c42e..4e48f52 100644
--- a/configure.in
+++ b/configure.in
@@ -542,6 +542,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)
--
1.6.3.3
--=-=-=--
More information about the ooo-build
mailing list