Use 72 column width for generating text documentation.
This commit is contained in:
parent
a4057e7529
commit
95e1ee608d
2
Makefile
2
Makefile
|
@ -70,7 +70,7 @@ test:
|
|||
nosetests -v --processes=$(NUMCPUS) -m "^test_.*" $(TESTOPTS) $(TESTS)
|
||||
|
||||
doc/patool.txt: doc/patool.1
|
||||
cols=`stty size | cut -d" " -f2`; stty cols 80; man -l doc/patool.1 | perl -pe 's/.\cH//g' > doc/patool.txt; stty cols $$cols
|
||||
cols=`stty size | cut -d" " -f2`; stty cols 72; man -l doc/patool.1 | perl -pe 's/.\cH//g' > doc/patool.txt; stty cols $$cols
|
||||
|
||||
.PHONY: deb
|
||||
deb:
|
||||
|
|
Loading…
Reference in New Issue