libc/eglibc: fix downloading 1.9
authorBob Dunlop <bob.dunlop@xyzzy.org.uk>
Tue Nov 09 10:44:29 2010 +0100 (2010-11-09)
branch1.9
changeset 21796224a410fb7f
parent 2177 452b3d04f6a5
child 2194 9fac54361185
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)
scripts/build/libc/eglibc.sh
     1.1 --- a/scripts/build/libc/eglibc.sh	Wed Nov 03 19:11:25 2010 +0100
     1.2 +++ b/scripts/build/libc/eglibc.sh	Tue Nov 09 10:44:29 2010 +0100
     1.3 @@ -14,7 +14,7 @@
     1.4          *)  svn_action="export --force";;
     1.5      esac
     1.6  
     1.7 -    CT_DoExecLog ALL svn ${svn_action} -r "${CT_EGLIBC_REVISION:-HEAD}" "${svn_url}" . 2>&1
     1.8 +    CT_DoExecLog ALL svn ${svn_action} -r "${CT_EGLIBC_REVISION:-HEAD}" "${svn_url}" "$(pwd)"
     1.9  
    1.10      # Compress eglibc
    1.11      CT_DoExecLog ALL mv libc "eglibc-${CT_LIBC_VERSION}"