From fcfc3a27f86d8d2814caaae57cbbf09aa3fac458 Mon Sep 17 00:00:00 2001 From: Bob Dunlop Date: Tue, 9 Nov 2010 10:44:29 +0100 Subject: 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. 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}" -- cgit v0.10.2-6-g49f6