Revision 98d30a3837d2b65b212e05bb406080204f1a8057 authored by Romain Lenglet on 09 May 2018, 08:04:08 UTC, committed by Romain Lenglet on 19 May 2018, 18:20:03 UTC
Create the veth pair immediately, so that the LXC and node MAC
addresses are known at endpoint creation time, like with the CNI
plugin.

Signed-off-by: Romain Lenglet <romain@covalent.io>
1 parent 2c7ca90
Raw File
Makefile.quiet
ifeq ($(V),0)
	QUIET=@
	ECHO_CC=echo "  CC    $(notdir $(shell pwd))/$@"
	ECHO_GEN=echo "  GEN   $(notdir $(shell pwd))/"
	ECHO_GO=echo "  GO    $(notdir $(shell pwd))/$@"
	ECHO_CHECK=echo "  CHECK"
	ECHO_BAZEL=echo "  BAZEL $(notdir $(shell pwd))/$(notdir $(shell dirname $(ENVOY_BIN)))/$@"
	ECHO_GINKGO=echo "  GINKG $(notdir $(shell pwd))"
	ECHO_CLEAN=echo "  CLEAN"
else
	# The whitespace at below EOLs is required for verbose case!
	ECHO_CC=: 
	ECHO_GEN=: 
	ECHO_GO=: 
	ECHO_CHECK=: 
	ECHO_BAZEL=: 
	ECHO_GINKGO=: 
	ECHO_CLEAN=: 
endif

back to top