Skip to content

Commit

Permalink
Fix incorrect line breaks in man page
Browse files Browse the repository at this point in the history
Run help2man with COLUMNS=999 so that rpl doesn’t wrap its output, and hence
help2man doesn’t insert incorrect line breaks (.IP) in its output.
  • Loading branch information
rrthomas committed Oct 13, 2020
1 parent d26cf6e commit a7a2b46
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 @@ -13,4 +13,4 @@ clean:
rm -f rpl.1

rpl.1: Makefile rpl man-include.1
help2man --locale=C.UTF-8 --no-info --name="replace strings in files" --include man-include.1 ./rpl > rpl.1
COLUMNS=999 help2man --locale=C.UTF-8 --no-info --name="replace strings in files" --include man-include.1 ./rpl > rpl.1

0 comments on commit a7a2b46

Please sign in to comment.