# HG changeset patch # User Bob Dunlop # Date 1289295869 -3600 # Node ID 6224a410fb7f3b047ce6449b18826cbf8ec78fe6 # Parent 452b3d04f6a5d677fa474be8f9e0b4d6c271dd6a 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. (transplanted from 42cc9bd0db7ea6d690efab40742881414f7c1277) diff -r 452b3d04f6a5 -r 6224a410fb7f scripts/build/libc/eglibc.sh --- a/scripts/build/libc/eglibc.sh Wed Nov 03 19:11:25 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}"