diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-05-10 13:33:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-10 13:33:57 -0400 |
commit | a09eaa888e17863bea3fa3412f375a732ad49eda (patch) | |
tree | 383e9670b600c42a6452bd7775e43ce337c74f39 | |
parent | 76dc9ef32dd8645e07365e1c0eb483219ab7e614 (diff) | |
parent | 9ffc2a6ac7b922cad5c6d536e537bb96b9cfdae6 (diff) | |
download | podman-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-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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') |