From 2a3a0a888ade631dbbf532a4d8496fd4bf443408 Mon Sep 17 00:00:00 2001 From: Christopher Canel Date: Fri, 3 May 2024 02:29:33 +0000 Subject: [PATCH] Use full output path in Makefile --- ratemon/runtime/c/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ratemon/runtime/c/Makefile b/ratemon/runtime/c/Makefile index d26ac25..ce272c4 100644 --- a/ratemon/runtime/c/Makefile +++ b/ratemon/runtime/c/Makefile @@ -2,7 +2,7 @@ # Set interface with RM_IFACE environment variable. -OUTPUT := .output +OUTPUT := $(abspath .output) CLANG ?= clang LIBBPF_SRC := $(abspath ../../../libbpf/src) BPFTOOL_SRC := $(abspath ../../../bpftool/src)