mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-04-24 04:55:45 +00:00
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:
parent
fd5d0a93e2
commit
fcfc3a27f8
@ -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}"
|
||||
|
Loading…
x
Reference in New Issue
Block a user