1
0
Fork 0
mirror of https://git.sr.ht/~sircmpwn/gmni synced 2024-04-19 20:43:55 +02:00

Makefile: install libgmni.a with 644 perms

Hi!
Static libraries don't need execution perms. I know this is very minor,
but best practice is to give everything the least amount of necessary
privileges. Thus, I propose changing the install command to use 644
perms.

Yours,
Ariadna
This commit is contained in:
Ariadna Vigo 2021-03-07 17:31:50 +01:00 committed by Drew DeVault
parent 31dfd38681
commit 42d80229d4

View File

@ -61,7 +61,7 @@ install: all install_docs
mkdir -p $(LIBDIR)/pkgconfig
install -m755 gmni $(BINDIR)/gmni
install -m755 gmnlm $(BINDIR)/gmnlm
install -m755 libgmni.a $(LIBDIR)/libgmni.a
install -m644 libgmni.a $(LIBDIR)/libgmni.a
install -m644 include/gmni/gmni.h $(INCLUDEDIR)/gmni/gmni.h
install -m644 include/gmni/tofu.h $(INCLUDEDIR)/gmni/tofu.h
install -m644 include/gmni/url.h $(INCLUDEDIR)/gmni/url.h