[Libreoffice-commits] .: Branch 'libreoffice-3-3' - download_external_sources.sh

Jan Holesovsky kendy at kemper.freedesktop.org
Wed Dec 29 03:20:54 PST 2010


 download_external_sources.sh |    5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

New commits:
commit c44442e0586c9c94c5c57f67dd7eb4b2d4bcde85
Author: Miklos Vajna <vmiklos at frugalware.org>
Date:   Mon Dec 27 13:57:38 2010 +0100

    Use OOO_SOURCEDIRNAME directly when downloading external sources
    
    This is needed because of the LIBREOFFICE_3_3_0_2 -> libreoffice-3.3.0.2
    tag name change.
    
    Signed-off-by: Jan Holesovsky <kendy at suse.cz>

diff --git a/download_external_sources.sh b/download_external_sources.sh
index a1e32d2..e05186d 100755
--- a/download_external_sources.sh
+++ b/download_external_sources.sh
@@ -8,12 +8,11 @@ export CLONEDIR
 if test -e $CLONEDIR/bootstrap/fetch_tarballs.sh -a -e $CLONEDIR/bootstrap/ooo.lst; then
     $CLONEDIR/bootstrap/fetch_tarballs.sh $CLONEDIR/bootstrap/ooo.lst
 else
-    GIT_TAG=`echo $OOO_SOURCEDIRNAME | tr "a-z.-" "A-Z__"`
     tmp=`mktemp -q -d`
 
     cd $tmp
-    wget http://cgit.freedesktop.org/libreoffice/bootstrap/plain/fetch_tarballs.sh?id=$GIT_TAG -O fetch_tarballs.sh && chmod 755 fetch_tarballs.sh
-    wget http://cgit.freedesktop.org/libreoffice/bootstrap/plain/ooo.lst?id=$GIT_TAG -O ooo.lst
+    wget http://cgit.freedesktop.org/libreoffice/bootstrap/plain/fetch_tarballs.sh?id=$GITTAG -O fetch_tarballs.sh && chmod 755 fetch_tarballs.sh
+    wget http://cgit.freedesktop.org/libreoffice/bootstrap/plain/ooo.lst?id=$GITTAG -O ooo.lst
     ./fetch_tarballs.sh ooo.lst &&  rm -f fetch_tarballs.sh ooo.lst
     cd ..
     rmdir $tmp


More information about the Libreoffice-commits mailing list