From 8e134bf7afafbaa99b11e98da809c495f32bf7d4 Mon Sep 17 00:00:00 2001 From: Pawel Wieczorek Date: Tue, 11 Aug 2020 15:52:17 +0200 Subject: [PATCH] Remove build directory nesting This patch also removes unnecessary directory creation. Command: 'go build -o "${BINARIES}"' creates required file tree on its own. Issue-ID: SECCOM-261 Change-Id: I6b492a2d5f61ce6e139bfe718256357c9d343a6b Signed-off-by: Pawel Wieczorek --- test/security/sslendpoints/Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/security/sslendpoints/Makefile b/test/security/sslendpoints/Makefile index a213e1a09..e853dc4dd 100644 --- a/test/security/sslendpoints/Makefile +++ b/test/security/sslendpoints/Makefile @@ -8,9 +8,8 @@ BINARIES := $(addprefix ${BUILD_DIR}/, ${BINARIES}) all: docker-build .PHONY: build -build: - mkdir -p "${BUILD_DIR}" - go build -o "${BUILD_DIR}/${BINARIES}" +build: ${BUILD_DIR} + go build -o "${BINARIES}" .PHONY: clean clean: clean-docker-build clean-build -- 2.16.6