diff mbox series

Config.in: drop --passive-ftp from BR2_WGET

Message ID 20240510211841.1980465-1-thomas.petazzoni@bootlin.com
State New
Headers show
Series Config.in: drop --passive-ftp from BR2_WGET | expand

Commit Message

Thomas Petazzoni May 10, 2024, 9:18 p.m. UTC
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@bootlin.com>
---
 Config.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

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"