# HG changeset patch # User "Yann E. MORIN" # Date 1242074742 0 # Node ID f37bf01a94a3923ab60af410b14a15d9c2a21063 # Parent 93d889b9d9bd5212e7d61f0415a056daa928caf9 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(-) diff -r 93d889b9d9bd -r f37bf01a94a3 scripts/build/tools/200-sstrip.sh --- a/scripts/build/tools/200-sstrip.sh Mon May 11 20:44:47 2009 +0000 +++ b/scripts/build/tools/200-sstrip.sh Mon May 11 20:45:42 2009 +0000 @@ -28,11 +28,16 @@ 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"