[ooo-build-commit] .: bin/unpack
Petr Mladek
pmladek at kemper.freedesktop.org
Wed Aug 18 02:08:26 PDT 2010
bin/unpack | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
New commits:
commit 071ba49c2a8d50edaaf9f9f096a34f0431d14db9
Author: Jonathan Nieder <jrnieder at gmail.com>
Date: Wed Aug 18 11:03:29 2010 +0200
do not unpack extensions sources if they are disabled
* bin/unpack: unpack extensions sources only when "$ENABLE_EXTENSIONS" = "YES"
diff --git a/bin/unpack b/bin/unpack
index 993e381..df22c35 100755
--- a/bin/unpack
+++ b/bin/unpack
@@ -87,7 +87,11 @@ if test "z$SYSTEM_GCC" = "z"; then
fi
# this will become the 'normal' way to do an all-through build name is misleading
-ALL_CORE_PKGS="sdk ure base calc help extras writer impress artwork filters testing bootstrap libs-gui libs-core libs-extern libs-extern-sys components postprocess extensions"
+ALL_CORE_PKGS="sdk ure base calc help extras writer impress artwork filters testing bootstrap libs-gui libs-core libs-extern libs-extern-sys components postprocess"
+if test "$ENABLE_EXTENSIONS" = "YES"
+then
+ ALL_CORE_PKGS="$ALL_CORE_PKGS extensions"
+fi
if test "z$OOO_GIT" = "z" ; then
if test "z$SPLIT" = "zyes" ; then
if test "z$PIECE" != "z"; then
More information about the ooo-build-commit
mailing list