libc/eglibc: fix downloading

Since Subversion 1.6.13 was released, it is no longer possible
to checkout/export to the current working directory using '.'
(eg. "svn co bla://blabla/foo/bar ." no longer extracts the content
of bar into ./ but into ./bar).

Fix this by luring Subversion to extract into "$(pwd)", which has
the advantage of working both with all known versions so far.

At the same time, remove the useless redirection.
This commit is contained in:
Bob Dunlop 2010-11-09 10:44:29 +01:00
parent fd5d0a93e2
commit fcfc3a27f8

View File

@ -14,7 +14,7 @@ do_eglibc_get() {
*) svn_action="export --force";;
esac
CT_DoExecLog ALL svn ${svn_action} -r "${CT_EGLIBC_REVISION:-HEAD}" "${svn_url}" . 2>&1
CT_DoExecLog ALL svn ${svn_action} -r "${CT_EGLIBC_REVISION:-HEAD}" "${svn_url}" "$(pwd)"
# Compress eglibc
CT_DoExecLog ALL mv libc "eglibc-${CT_LIBC_VERSION}"