aboutsummaryrefslogtreecommitdiffstats
path: root/core/deps.mk
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2016-10-27 01:32:48 +0300
committerLoïc Hoguin <[email protected]>2016-10-27 01:32:48 +0300
commit34a5d5ca352bf06e6208b80bfb8dd32b8e9138c5 (patch)
tree9af43a516c5e8776702a9dd7fcc8188c0d34f36f /core/deps.mk
parent7f148006fdd35992bd90ca24c70b5f0e00a8f719 (diff)
downloaderlang.mk-34a5d5ca352bf06e6208b80bfb8dd32b8e9138c5.tar.gz
erlang.mk-34a5d5ca352bf06e6208b80bfb8dd32b8e9138c5.tar.bz2
erlang.mk-34a5d5ca352bf06e6208b80bfb8dd32b8e9138c5.zip
Fix Hex package downloads on FreeBSD
Error has been detected during the nightly packages build.
Diffstat (limited to 'core/deps.mk')
-rw-r--r--core/deps.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/deps.mk b/core/deps.mk
index 8ad96a8..cc5f5bb 100644
--- a/core/deps.mk
+++ b/core/deps.mk
@@ -503,7 +503,7 @@ define dep_fetch_hex
mkdir -p $(ERLANG_MK_TMP)/hex $(DEPS_DIR)/$1; \
$(call core_http_get,$(ERLANG_MK_TMP)/hex/$1.tar,\
https://s3.amazonaws.com/s3.hex.pm/tarballs/$1-$(strip $(word 2,$(dep_$1))).tar); \
- tar -xOf $(ERLANG_MK_TMP)/hex/$1.tar contents.tar.gz | tar -C $(DEPS_DIR)/$1 -xz;
+ tar -xOf $(ERLANG_MK_TMP)/hex/$1.tar contents.tar.gz | tar -C $(DEPS_DIR)/$1 -xzf -;
endef
define dep_fetch_fail