Skip to content

Commit

Permalink
Use the .po files to work out which manpage dirs to create.
Browse files Browse the repository at this point in the history
The pattern being used here didn't match anything in a tarball release.
  • Loading branch information
atsampson committed Aug 21, 2022
1 parent 134ee88 commit e7622b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ install: all
fi
$(INSTALL_DIR) $(ROOT)/usr/include/
$(INSTALL_DATA) initreq.h $(ROOT)/usr/include/
for lang in '' $(subst ../man/,,$(wildcard ../man/po/??/)); do \
for lang in '' $(patsubst ../man/po/%.po,%,$(wildcard ../man/po/??.po)); do \
$(INSTALL_DIR) $(ROOT)$(MANDIR)/man1/$$lang; \
$(INSTALL_DIR) $(ROOT)$(MANDIR)/man5/$$lang; \
$(INSTALL_DIR) $(ROOT)$(MANDIR)/man8/$$lang; \
Expand Down

0 comments on commit e7622b0

Please sign in to comment.