Skip to content

Commit

Permalink
Makefile.am: fix install-man activity (wrong dir)
Browse files Browse the repository at this point in the history
Signed-off-by: Jim Klimov <[email protected]>
  • Loading branch information
jimklimov committed Jan 8, 2025
1 parent 5bf884c commit e8fbedf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -493,9 +493,9 @@ install-bin:
install-man: install-data-recursive
@echo $(WARN)
@echo "Warning: 'make install-man' is deprecated."
@echo "Use 'cd man; make install' instead."
@echo "Use 'cd docs/man; make install' instead."
@echo $(WARN)
+cd man; $(MAKE) $(AM_MAKEFLAGS) install
+cd docs/man; $(MAKE) $(AM_MAKEFLAGS) install
install-conf:
@echo $(WARN)
@echo "Warning: 'make install-conf' is deprecated."
Expand Down

0 comments on commit e8fbedf

Please sign in to comment.