summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Dunlop <bob.dunlop@xyzzy.org.uk>2010-11-09 09:44:29 (GMT)
committerBob Dunlop <bob.dunlop@xyzzy.org.uk>2010-11-09 09:44:29 (GMT)
commitfcfc3a27f86d8d2814caaae57cbbf09aa3fac458 (patch)
treeb31562f714d6e73942d4e99984e3baf758b5ac3d
parentfd5d0a93e27b44c3c523d52ce5d5ed5320998758 (diff)
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.
-rw-r--r--scripts/build/libc/eglibc.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/libc/eglibc.sh b/scripts/build/libc/eglibc.sh
index d1c0724..b71107f 100644
--- a/scripts/build/libc/eglibc.sh
+++ b/scripts/build/libc/eglibc.sh
@@ -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}"