diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2017-09-13 15:01:15 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2017-09-22 23:28:10 +0200 |
commit | 771bb2d58d945ebd2909dc8ca5cccf30f189c581 (patch) | |
tree | 0b79b9dc9e3e827170636d235cdcb8eeb894e9df | |
parent | f3e3b36159fa077400e7151b3e3d03082a897b2e (diff) | |
download | buildroot-771bb2d58d945ebd2909dc8ca5cccf30f189c581.tar.gz buildroot-771bb2d58d945ebd2909dc8ca5cccf30f189c581.zip |
bind: use http:// instead of ftp:// for site
To avoid issues with firewalls blocking ftp.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/bind/bind.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/bind/bind.mk b/package/bind/bind.mk index 97d98d0b21..f6aa7253ed 100644 --- a/package/bind/bind.mk +++ b/package/bind/bind.mk @@ -5,7 +5,7 @@ ################################################################################ BIND_VERSION = 9.11.2 -BIND_SITE = ftp://ftp.isc.org/isc/bind9/$(BIND_VERSION) +BIND_SITE = http://ftp.isc.org/isc/bind9/$(BIND_VERSION) # bind does not support parallel builds. BIND_MAKE = $(MAKE1) BIND_INSTALL_STAGING = YES |