summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-05-10 13:33:57 -0400
committerGitHub <noreply@github.com>2022-05-10 13:33:57 -0400
commita09eaa888e17863bea3fa3412f375a732ad49eda (patch)
tree383e9670b600c42a6452bd7775e43ce337c74f39
parent76dc9ef32dd8645e07365e1c0eb483219ab7e614 (diff)
parent9ffc2a6ac7b922cad5c6d536e537bb96b9cfdae6 (diff)
downloadpodman-a09eaa888e17863bea3fa3412f375a732ad49eda.tar.gz
podman-a09eaa888e17863bea3fa3412f375a732ad49eda.tar.bz2
podman-a09eaa888e17863bea3fa3412f375a732ad49eda.zip
Merge pull request #14180 from cevich/fix_makefile_path
Cirrus: Fix Makefile including 'hack' in $PATH
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 51b3d6d96..6ea207bca 100644
--- a/Makefile
+++ b/Makefile
@@ -134,7 +134,8 @@ ifeq ($(GOBIN),)
GOBIN := $(FIRST_GOPATH)/bin
endif
-export PATH := $(PATH):$(GOBIN):$(CURDIR)/hack
+# This must never include the 'hack' directory
+export PATH := $(PATH):$(GOBIN)
GOMD2MAN ?= $(shell command -v go-md2man || echo './test/tools/build/go-md2man')