This is an automated email from the git hooks/post-receive script.
robert.savoye pushed a commit to branch parser in repository toolchain/abe.
The following commit(s) were added to refs/heads/parser by this push: new 70887d9 extract the subdirectory from a tarball URL so the path is complete. 70887d9 is described below
commit 70887d90e5efd2bc7eb7097ce37485840c0ee609 Author: Rob Savoye rob.savoye@linaro.org Date: Sun Aug 16 17:14:03 2015 -0600
extract the subdirectory from a tarball URL so the path is complete.
Change-Id: I9db5892e3b72247459656818898ac7b7fb0be22b --- lib/fetch.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/fetch.sh b/lib/fetch.sh index 8e93408..ad35937 100755 --- a/lib/fetch.sh +++ b/lib/fetch.sh @@ -115,7 +115,7 @@ fetch() # decompress and untar a fetched tarball extract() { -# trace "$*" + trace "$*"
local extractor= local taropt= @@ -140,7 +140,7 @@ extract()
# Initialize component data structures local builddir="`get_builddir $1`" - local url="http://%24%7Bfileserver%7D%24%7Bremote_snapshots%7D" + local url="http://%24%7Bfileserver%7D%24%7Bremote_snapshots%7D/%60dirname $1`" component_init ${tool} URL="$1" URL="${url}" SRCDIR="${srcdir}" FILESPEC="${fi [...]