[Buildroot] [PATCH] Config.in: drop --passive-ftp from BR2_WGET

Thomas Petazzoni thomas.petazzoni at bootlin.com
Fri May 10 21:18:40 UTC 2024


Starting from version 40, Fedora uses
wget2 (https://gitlab.com/gnuwget/wget2) instead of the classic
wget. wget2 does not support --passive-ftp, so all downloads fail
with:

  Unknown option 'passive-ftp'

Since we're pretty much no longer using FTP to download things, let's
get rid of this option in our default BR2_WGET value, which makes
downloads work on Fedora 40.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni at bootlin.com>
---
 Config.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Config.in b/Config.in
index b5a94325c4..bdf5fa8647 100644
--- a/Config.in
+++ b/Config.in
@@ -105,7 +105,7 @@ menu "Commands"
 
 config BR2_WGET
 	string "Wget command"
-	default "wget --passive-ftp -nd -t 3"
+	default "wget -nd -t 3"
 
 config BR2_SVN
 	string "Subversion (svn) command"
-- 
2.44.0




More information about the buildroot mailing list