# HG changeset patch # User Bob Dunlop # Date 1289295869 -3600 # Node ID 42cc9bd0db7ea6d690efab40742881414f7c1277 # Parent fff955de3fb893ef91f63e4e0f77a5ad02fc728a 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 -r fff955de3fb8 -r 42cc9bd0db7e scripts/build/libc/eglibc.sh --- a/scripts/build/libc/eglibc.sh Wed Nov 03 18:30:30 2010 +0100 +++ b/scripts/build/libc/eglibc.sh Tue Nov 09 10:44:29 2010 +0100 @@ -14,7 +14,7 @@ *) 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}"