From 1c92ad0afb7d0828f5d8a69adbf9600b75f3b212 Mon Sep 17 00:00:00 2001 From: Chris Date: Tue, 14 Nov 2017 13:13:31 -0600 Subject: fix ee make targets (#7828) --- Makefile | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 755c3fbb9..a0cf74f1c 100644 --- a/Makefile +++ b/Makefile @@ -69,18 +69,9 @@ TESTFLAGS ?= -short TESTFLAGSEE ?= -short # Packages lists -TE_PACKAGES=$(shell go list ./... | grep -v vendor) +TE_PACKAGES=$(shell go list ./...) TE_PACKAGES_COMMA=$(shell echo $(TE_PACKAGES) | tr ' ' ',') -EE_PACKAGES=$(shell go list ./enterprise/... | grep -v vendor | tail -n +2) -EE_PACKAGES_COMMA=$(shell echo $(EE_PACKAGES) | tr ' ' ',') - -ifeq ($(BUILD_ENTERPRISE_READY),true) -ALL_PACKAGES_COMMA=$(TE_PACKAGES_COMMA),$(EE_PACKAGES_COMMA) -else -ALL_PACKAGES_COMMA=$(TE_PACKAGES_COMMA) -endif - # Prepares the enterprise build if exists. The IGNORE stuff is a hack to get the Makefile to execute the commands outside a target ifeq ($(BUILD_ENTERPRISE_READY),true) IGNORE:=$(shell echo Enterprise build selected, preparing) @@ -90,6 +81,15 @@ ifeq ($(BUILD_ENTERPRISE_READY),true) IGNORE:=$(shell ln -s $(BUILD_ENTERPRISE_DIR) enterprise) endif +EE_PACKAGES=$(shell go list ./enterprise/...) +EE_PACKAGES_COMMA=$(shell echo $(EE_PACKAGES) | tr ' ' ',') + +ifeq ($(BUILD_ENTERPRISE_READY),true) +ALL_PACKAGES_COMMA=$(TE_PACKAGES_COMMA),$(EE_PACKAGES_COMMA) +else +ALL_PACKAGES_COMMA=$(TE_PACKAGES_COMMA) +endif + all: run -- cgit v1.2.3-1-g7c22