diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-01-27 23:13:24 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-01-27 23:13:24 +0000 |
commit | 9c6d8132b170ba41b1cff27d6527e9400af0d756 (patch) | |
tree | 912706bcff567ccf84bcf543a75e2f20dfb9cbf8 | |
parent | c7d780e6c56cf13d5fa74cf8f43acd3f3d8f28f0 (diff) | |
download | crosstool-ng-9c6d8132b170ba41b1cff27d6527e9400af0d756.tar.gz crosstool-ng-9c6d8132b170ba41b1cff27d6527e9400af0d756.tar.bz2 crosstool-ng-9c6d8132b170ba41b1cff27d6527e9400af0d756.zip |
Backport #1301 from /trunk, in a different manner due to underlying infrastructure changes:
- the URL to retrieve sstrip (from buldroot) has changed
/branches/1.3/scripts/build/tools/200-sstrip.sh | 6 3 3 0 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
-rw-r--r-- | scripts/build/tools/200-sstrip.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/build/tools/200-sstrip.sh b/scripts/build/tools/200-sstrip.sh index fd7812ab..be875e09 100644 --- a/scripts/build/tools/200-sstrip.sh +++ b/scripts/build/tools/200-sstrip.sh @@ -34,13 +34,13 @@ case "${CT_SSTRIP_FROM}" in } do_tools_sstrip_get() { # Note: the space between sstrip and .c is on purpose. - CT_GetFile sstrip .c \ - "http://buildroot.uclibc.org/cgi-bin/viewcvs.cgi/*checkout*/trunk/buildroot/toolchain/sstrip/" + CT_GetFile sstrip '.c?view=co' \ + "http://sources.busybox.net/index.py/trunk/buildroot/toolchain/sstrip/" } do_tools_sstrip_extract() { # We'll let buildroot guys take care of sstrip maintenance and patching. mkdir -p "${CT_SRC_DIR}/sstrip" - CT_DoExecLog ALL cp -v "${CT_TARBALLS_DIR}/sstrip.c" "${CT_SRC_DIR}/sstrip" + CT_DoExecLog ALL cp -v "${CT_TARBALLS_DIR}/sstrip.c?view=co" "${CT_SRC_DIR}/sstrip" } do_tools_sstrip_build() { CT_DoStep INFO "Installing sstrip" |