# HG changeset patch # User "Yann E. MORIN" # Date 1242665480 0 # Node ID 611f73f20240cb0e4dc5b936e5b5c4bc34a7e3df # Parent 8fe0bb65a37059fd3b1a47b73d916f634ed53f4c 1.4: backport #1519 from /trunk: - sstrip: update the upstream URL, now buildroot has migrated to using git instead of svn. -------- diffstat follows -------- /branches/1.4/scripts/build/tools/200-sstrip.sh | 11 8 3 0 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff -r 8fe0bb65a370 -r 611f73f20240 scripts/build/tools/200-sstrip.sh --- a/scripts/build/tools/200-sstrip.sh Sun May 03 08:40:05 2009 +0000 +++ b/scripts/build/tools/200-sstrip.sh Mon May 18 16:51:20 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"