diff options
Diffstat (limited to 'plugins/examples/host-toolchain')
-rw-r--r-- | plugins/examples/host-toolchain/README.md | 2 | ||||
-rw-r--r-- | plugins/examples/host-toolchain/make-w32-bin.mk | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/examples/host-toolchain/README.md b/plugins/examples/host-toolchain/README.md index 8b51228..9783b1b 100644 --- a/plugins/examples/host-toolchain/README.md +++ b/plugins/examples/host-toolchain/README.md @@ -46,7 +46,7 @@ terminal emulators: #### Make Make is difficult to cross-compile so it is downloaded from the [source -recommended by the GNU Make team](http://git.savannah.gnu.org/cgit/make.git/tree/README.W32.template). +recommended by the GNU Make team](https://git.savannah.gnu.org/cgit/make.git/tree/README.W32.template). #### pkgconf/pkg-config diff --git a/plugins/examples/host-toolchain/make-w32-bin.mk b/plugins/examples/host-toolchain/make-w32-bin.mk index bd91eff..e00bfc0 100644 --- a/plugins/examples/host-toolchain/make-w32-bin.mk +++ b/plugins/examples/host-toolchain/make-w32-bin.mk @@ -6,11 +6,11 @@ $(PKG)_VERSION := 4.2 $(PKG)_CHECKSUM := 6cab11301e601996ab0cb7b3b903e5a55d5bd795614946cf6bd025cd61c710c6 $(PKG)_SUBDIR := . $(PKG)_FILE := make-$($(PKG)_VERSION)-without-guile-w32-bin.zip -$(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/ezwinports/$($(PKG)_FILE) +$(PKG)_URL := https://$(SOURCEFORGE_MIRROR)/project/ezwinports/$($(PKG)_FILE) $(PKG)_DEPS := define $(PKG)_UPDATE - $(WGET) -q -O- 'http://sourceforge.net/projects/ezwinports/files/' | \ + $(WGET) -q -O- 'https://sourceforge.net/projects/ezwinports/files/' | \ $(SED) -n 's,.*/make-\([0-9.]*\)-without-guile.*,\1,p' | \ head -1 endef |