diff options
author | Boris Nagaev <bnagaev@gmail.com> | 2017-05-01 20:58:39 (GMT) |
---|---|---|
committer | Boris Nagaev <bnagaev@gmail.com> | 2017-05-18 22:42:48 (GMT) |
commit | ae26487a84eda08b02e73c21bf238c5921b61dca (patch) | |
tree | af0cbca4fffc1b0b9e918effd9855f3d2c2e2603 | |
parent | 1f704a3d491527cac5962f4fe6453d79b69b23af (diff) | |
download | mxe-ae26487a84eda08b02e73c21bf238c5921b61dca.zip mxe-ae26487a84eda08b02e73c21bf238c5921b61dca.tar.gz mxe-ae26487a84eda08b02e73c21bf238c5921b61dca.tar.bz2 |
factor out var WGET_TOOL from WGET
It is needed to specify a path to custom wget binary without
removing the argument passed by WGET (--user-agent).
Also can be used to add --no-check-certificate back.
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -36,7 +36,8 @@ PATCH := $(shell gpatch --help >/dev/null 2>&1 && echo g)patch SED := $(shell gsed --help >/dev/null 2>&1 && echo g)sed SORT := $(shell gsort --help >/dev/null 2>&1 && echo g)sort DEFAULT_UA := $(shell wget --version | $(SED) -n 's,GNU \(Wget\) \([0-9.]*\).*,\1/\2,p') -WGET = wget --user-agent='$(or $($(1)_UA),$(DEFAULT_UA))' +WGET_TOOL = wget +WGET = $(WGET_TOOL) --user-agent='$(or $($(1)_UA),$(DEFAULT_UA))' REQUIREMENTS := autoconf automake autopoint bash bison bzip2 flex \ $(BUILD_CC) $(BUILD_CXX) gperf intltoolize $(LIBTOOL) \ |