From a0af3619d364c880a1dcb6585ce93e0fcdd628c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20Trma=C4=8D?= Date: Wed, 23 Nov 2016 16:57:37 +0100 Subject: [PATCH] Only build one skopeo binary by (make all) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Both (make binary) and (make binary-static) compile the code and create a skopeo binary, so (make all) should only depend on one of them. Signed-off-by: Miloslav Trmač --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3f853a33..fb821898 100644 --- a/Makefile +++ b/Makefile @@ -36,7 +36,7 @@ MANPAGES_MD = $(wildcard docs/*.md) # Note: Uses the -N -l go compiler options to disable compiler optimizations # and inlining. Using these build options allows you to subsequently # use source debugging tools like delve. -all: binary binary-static docs +all: binary docs # Build a docker image (skopeobuild) that has everything we need to build. # Then do the build and the output (skopeo) should appear in current dir