summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2009-05-11 20:45:42 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2009-05-11 20:45:42 (GMT)
commitf24796f24a9f7e7f320d2caa2d4b79912327d48b (patch)
treedc0cd0f33963ef50ce683d825b2b3ac4c62fe64a /scripts
parent7bc6829e383cf5763b854846e1b7644d052e7977 (diff)
sstrip:
- update the upstream URL, now buildroot has migrated to using git instead of svn. -------- diffstat follows -------- /trunk/scripts/build/tools/200-sstrip.sh | 11 8 3 0 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/build/tools/200-sstrip.sh11
1 files changed, 8 insertions, 3 deletions
diff --git a/scripts/build/tools/200-sstrip.sh b/scripts/build/tools/200-sstrip.sh
index d95eda8..b72aa79 100644
--- a/scripts/build/tools/200-sstrip.sh
+++ b/scripts/build/tools/200-sstrip.sh
@@ -28,11 +28,16 @@ case "${CT_SSTRIP_FROM}" in
buildroot)
do_tools_sstrip_get() {
- CT_GetSVN sstrip svn://uclibc.org/trunk/buildroot/toolchain/sstrip
+ CT_GetFile sstrip .c http://git.buildroot.net/buildroot/plain/toolchain/sstrip
}
do_tools_sstrip_extract() {
- CT_Extract sstrip
- CT_Patch sstrip
+ # We leave the sstrip maintenance to the buildroot people:
+ # -> any fix-up goes directly there
+ # -> we don't have patches for it
+ # -> we don't need to patch it
+ # -> just create a directory in src/, and copy it there.
+ CT_DoExecLog DEBUG mkdir -p "${CT_SRC_DIR}/sstrip"
+ CT_DoExecLog DEBUG cp -v "${CT_TARBALLS_DIR}/sstrip.c" "${CT_SRC_DIR}/sstrip"
}
do_tools_sstrip_build() {
CT_DoStep INFO "Installing sstrip"