Skip to content

Commit

Permalink
Use 644 permissions for shared libs
Browse files Browse the repository at this point in the history
  • Loading branch information
tristantarrant authored and falkTX committed Feb 17, 2024
1 parent 8ac6a8f commit ec15b3c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,9 @@ install: install_man
install -d $(DESTDIR)$(BINDIR)
install -m 755 $(PROG) $(DESTDIR)$(BINDIR)
install -d $(DESTDIR)$(shell pkg-config --variable=libdir jack)/jack/
install -m 755 $(PROG).so $(DESTDIR)$(shell pkg-config --variable=libdir jack)/jack/
install -m 755 fake-input.so $(DESTDIR)$(shell pkg-config --variable=libdir jack)/jack/
install -m 755 mod-monitor.so $(DESTDIR)$(shell pkg-config --variable=libdir jack)/jack/
install -m 644 $(PROG).so $(DESTDIR)$(shell pkg-config --variable=libdir jack)/jack/
install -m 644 fake-input.so $(DESTDIR)$(shell pkg-config --variable=libdir jack)/jack/
install -m 644 mod-monitor.so $(DESTDIR)$(shell pkg-config --variable=libdir jack)/jack/

# clean rule
clean:
Expand Down

0 comments on commit ec15b3c

Please sign in to comment.