From 3cfb0478ddef694950214680c0963124d945dddb Mon Sep 17 00:00:00 2001 From: Ave Date: Sat, 5 Dec 2020 00:27:48 +0300 Subject: [PATCH] Makefile: use proper perms on install --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a1d5c01..0bab70e 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ $(TARGET): $(TARGET).cpp $(CC) $(CFLAGS) -o $(TARGET) $(DEPS) $(TARGET).cpp $(LIBS) install: $(TARGET) - install -m 644 $(TARGET) $(DESTDIR)$(PREFIX)/bin/ + install -m 755 $(TARGET) $(DESTDIR)$(PREFIX)/bin/ uninstall: rm -f $(DESTDIR)$(PREFIX)/bin/$(TARGET)