diff options
author | Jonas Bjurel <jonas.bjurel@ericsson.com> | 2016-03-14 12:11:55 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-03-14 12:11:56 +0000 |
commit | 7e55696b3d16dbc6b45fba7a20e6145089a040a8 (patch) | |
tree | ffb11fd8bf239050fbd89e58efe579d544d1e10f /build/Makefile | |
parent | 40b59c1ebe8723d5b52ef548a9c22b80d49cbc5a (diff) | |
parent | 4047ae2f2fe82e8da8d9263cd058b72a31bef77b (diff) |
Merge "Fix network connection check issue"
Diffstat (limited to 'build/Makefile')
-rw-r--r-- | build/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/Makefile b/build/Makefile index 01f6e414a..a76c44ee2 100644 --- a/build/Makefile +++ b/build/Makefile @@ -85,7 +85,7 @@ all: KERNEL_VER="$${KERNEL_VER%.*-*}"; \ KERNEL_VER="$${KERNEL_VER//.}"; \ [ $$KERNEL_VER -ge 319 ] || (echo 'Kernel version must be 3.19 or newer'; exit 1) - @docker/runcontext $(DOCKERIMG) ping -c 1 www.google.com > /dev/null 2>&1 || (echo 'No docker network connectivity or name server - check your network- and docker settings'; exit 1) + @docker/runcontext $(DOCKERIMG) wget -q www.google.com > /dev/null 2>&1 || (echo 'No docker network connectivity or name server - check your network- and docker settings'; exit 1) @docker/runcontext $(DOCKERIMG) $(MAKE) $(MAKEFLAGS) iso |