Skip to content

Commit 79ce85b

Browse files
committed
make: fix binary install permissions
Fixes: #35 Signed-off-by: Morten Linderud <[email protected]>
1 parent 053fc52 commit 79ce85b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ $(BINS): $(addprefix bin/,$(BINS))
1919
.PHONY: install
2020
install: $(BINS)
2121
@for bin in $(BINS); do \
22-
install -Dm644 "bin/$$bin" -t '$(DESTDIR)$(BINDIR)'; \
22+
install -Dm755 "bin/$$bin" -t '$(DESTDIR)$(BINDIR)'; \
2323
done;
2424
@install -dm755 $(DESTDIR)$(LIBDIR)/systemd/system
2525
@install -dm755 $(DESTDIR)$(LIBDIR)/systemd/user

0 commit comments

Comments
 (0)