Skip to content

Commit fd763be

Browse files
committed
Makefile: fix TOOLS to add -e flag
Signed-off-by: Koichi Shiraishi <[email protected]>
1 parent 49137ab commit fd763be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ GO_FLAGS ?= -tags='$(subst $(space),$(comma),${GO_BUILDTAGS})' -ldflags='${GO_LD
1919

2020
TOOLS_DIR := ${CURDIR}/tools
2121
TOOLS_BIN := ${TOOLS_DIR}/bin
22-
TOOLS := $(shell cd ${TOOLS_DIR} && go list -v -x -f '{{ join .Imports " " }}' -tags=tools)
22+
TOOLS := $(shell cd ${TOOLS_DIR} && go list -e -v -x -f '{{ join .Imports " " }}' -tags=tools)
2323

2424
GO_PKGS := ./...
2525

0 commit comments

Comments
 (0)