Skip to content

Commit

Permalink
Makefile: Fix man page install
Browse files Browse the repository at this point in the history
  • Loading branch information
pubis authored and jirutka committed Mar 17, 2022
1 parent 8badfc4 commit b4bda45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ install-exec: build-exec

#: Install man page into $DESTDIR/$mandir/man1/.
install-man: build-man
$(INSTALL) -D -m755 $(D)/$(BIN_NAME) "$(DESTDIR)$(mandir)/man1/$(BIN_NAME).1"
$(INSTALL) -D -m755 $(D)/$(BIN_NAME).1 "$(DESTDIR)$(mandir)/man1/$(BIN_NAME).1"

#: Uninstall from $DESTDIR.
uninstall:
Expand Down

0 comments on commit b4bda45

Please sign in to comment.