[PATCH] Fix --whitout-split

Rail Aliev rail at openoffice.org
Sun Aug 30 05:32:29 PDT 2009


When --whitout-split is used, SPLIT variable is set to "no", not to an empty
string.

* download.in: "" changed to "no"
---
 download.in |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/download.in b/download.in
index 27be8ab..beeb364 100755
--- a/download.in
+++ b/download.in
@@ -126,7 +126,7 @@ if ( '@UPSTREAM_NAME@' ne '' ) {
 }
 
 $WGET='@WGET@';
-if ('@SPLIT@' eq '') {
+if ('@SPLIT@' eq 'no') {
     $SPLIT = 0;
 } else {
     $SPLIT = 1;
-- 
1.6.3.3


--=-=-=--


More information about the ooo-build mailing list