From dc730b79251d8f1ff7431ce3397c82712a1ac1b4 Mon Sep 17 00:00:00 2001 From: Liam Waldron Date: Wed, 19 Mar 2025 20:30:54 -0400 Subject: [PATCH] fix issue with Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4a51cc3..7a5624f 100644 --- a/Makefile +++ b/Makefile @@ -5,5 +5,5 @@ all: @echo "Run 'make install' to install the library" -install: ./include/libevconf.h - install ./include/libevconf.h -t $(PREFIX)/include -m 644 +install: include/libevconf.h + install include/libevconf.h -t $(PREFIX)/include -m 644