diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2011-01-08 18:45:25 +0100 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2011-01-08 18:45:25 +0100 |
commit | cca3388bd456b38f2c2813837c1f19c679554589 (patch) | |
tree | 7991dc0d1426e3ccedf27fdd2a84d1bb24e2f517 /download | |
parent | 6e56de169d1c6c3d6b78f3fe99e088f6286b34a3 (diff) |
small fixes to allow using --with-linked-git & --with-external-tar
Diffstat (limited to 'download')
-rwxr-xr-x | download | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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: |