From 7f6b2a557eb6b26d8fe39020ec1565a058acd61b Mon Sep 17 00:00:00 2001 From: Tristan Riehs Date: Sun, 31 May 2026 11:18:07 +0200 Subject: Use install instead of cp for installing --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index b3fd009..ef5de9e 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,7 @@ clean: install: libuconfig.a mkdir -p $(PREFIX)/lib $(PREFIX)/include - cp libuconfig.a $(PREFIX)/lib/ - cp include/uconfig.h $(PREFIX)/include/ + install --mode=0644 libuconfig.a $(PREFIX)/lib/ + install --mode=0644 include/uconfig.h $(PREFIX)/include/ .PHONY: all check clean install -- cgit v1.2.3