From 982c6773ac1443d7b2b8bdb4805555785ed53d6c Mon Sep 17 00:00:00 2001 From: Andrew Stoycos Date: Mon, 27 Nov 2023 09:58:48 -0500 Subject: [PATCH] bpfd-operator: output generated to local directory Make sure that all our generated files are output to the correct local repository. Signed-off-by: Andrew Stoycos --- bpfman-operator/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bpfman-operator/Makefile b/bpfman-operator/Makefile index d9dba9e4b..690823104 100644 --- a/bpfman-operator/Makefile +++ b/bpfman-operator/Makefile @@ -181,8 +181,8 @@ ifeq ($(VERIFY_CODEGEN), true) VERIFY_FLAG=--verify-only endif -OUTPUT_PKG ?= github.com/bpfman/bpfman/bpfman-operator/pkg/client -APIS_PKG ?= github.com/bpfman/bpfman/bpfman-operator +OUTPUT_PKG ?= $(shell pwd)/bpfman-operator/pkg/client +APIS_PKG ?= $(shell pwd)/bpfman-operator CLIENTSET_NAME ?= versioned CLIENTSET_PKG_NAME ?= clientset COMMON_FLAGS ?= ${VERIFY_FLAG} --go-header-file $(shell pwd)/hack/boilerplate.go.txt