diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-09 16:47:01 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-10 14:24:22 +0100 |
commit | 0f8290ff1c9bc86c744f67ce6194dd6911533012 (patch) | |
tree | fb7eab636a5a39e5860764d6a3a43ee378e73ff8 | |
parent | 34a8cdafee145d04f8b526b094341c34cf36ba1b (diff) | |
download | openembedded-core-0f8290ff1c9bc86c744f67ce6194dd6911533012.tar.gz openembedded-core-0f8290ff1c9bc86c744f67ce6194dd6911533012.tar.bz2 openembedded-core-0f8290ff1c9bc86c744f67ce6194dd6911533012.zip |
bitbake.conf: Add passive-ftp option to the default FETCHCMD_wget
This brings it into sync with the wget FETCHCOMMAND and RESUMECOMMAND
variables.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/conf/bitbake.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 846c6c32a2..e700c93e3a 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -571,7 +571,7 @@ XORG_MIRROR = "http://xorg.freedesktop.org/releases" FETCHCMD_svn = "/usr/bin/env svn" FETCHCMD_cvs = "/usr/bin/env cvs" -FETCHCMD_wget = "/usr/bin/env wget -t 2 -T 30 -nv --no-check-certificate" +FETCHCMD_wget = "/usr/bin/env wget -t 2 -T 30 -nv --passive-ftp --no-check-certificate" FETCHCMD_bzr = "/usr/bin/env bzr" FETCHCMD_hg = "/usr/bin/env hg" |