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)
commite6eeb01a3c6c4987aa1562f398d679e6fe7cf4b9 (patch)
tree5e9a7d4034d650524859bb724f5ced53dbac83a1
parentc513ae4d1d7758822fd32bde17f906dd0cb01474 (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. (transplanted from 42cc9bd0db7ea6d690efab40742881414f7c1277)
-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}"