From 3ec9a7de2a4e4c7c2b866f633d368100f4ec4809 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 6 Jan 2009 19:56:02 +0000 Subject: bitbake: Fix wget fetcher to better handle urls with ; followed by parameters in the url --- bitbake-dev/lib/bb/fetch/wget.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake-dev') diff --git a/bitbake-dev/lib/bb/fetch/wget.py b/bitbake-dev/lib/bb/fetch/wget.py index 0008a28700..442fc3e489 100644 --- a/bitbake-dev/lib/bb/fetch/wget.py +++ b/bitbake-dev/lib/bb/fetch/wget.py @@ -66,7 +66,7 @@ class Wget(Fetch): uri_host = uri_decoded[1] bb.msg.note(1, bb.msg.domain.Fetcher, "fetch " + uri) - fetchcmd = fetchcmd.replace("${URI}", uri) + fetchcmd = fetchcmd.replace("${URI}", uri.split(";")[0]) fetchcmd = fetchcmd.replace("${FILE}", ud.basename) httpproxy = None ftpproxy = None -- cgit v1.2.3-54-g00ecf