summaryrefslogtreecommitdiff
path: root/download
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2011-01-08 18:45:25 +0100
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2011-01-08 18:45:25 +0100
commitcca3388bd456b38f2c2813837c1f19c679554589 (patch)
tree7991dc0d1426e3ccedf27fdd2a84d1bb24e2f517 /download
parent6e56de169d1c6c3d6b78f3fe99e088f6286b34a3 (diff)
small fixes to allow using --with-linked-git & --with-external-tar
Diffstat (limited to 'download')
-rwxr-xr-xdownload4
1 files changed, 4 insertions, 0 deletions
diff --git a/download b/download
index 5002d0f1e1b1..b839bd80fa84 100755
--- a/download
+++ b/download
@@ -42,6 +42,9 @@ if [ -d .git ] ; then
mkdir clone
for i in $GIT_REPO_NAMES ; do
bin/git-new-workdir $GIT_LINK_SRC/$i clone/$i
+ for i in clone/$i/* ; do
+ ln -sf $i $(basename $i)
+ done
done
fi
fi
@@ -229,3 +232,4 @@ fi
[ -x "post_download" ] || { echo "'post_download' script not found, run ./autogen.sh." ; exit 1 ; }
./post_download || exit 1
+# vim:set shiftwidth=4 softtabstop=4 expandtab: