diff options
author | Axel Beckert <abe@deuxchevaux.org> | 2014-06-28 13:37:06 +0200 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2014-06-28 13:37:06 +0200 |
commit | 11486424e9e96ce241529e1c63eb751cda94d0a6 (patch) | |
tree | bd27917ba7649a8527b93533fd05e900d0ab4a3b | |
parent | 5cebe890c0feb186dbe4215e0cb0dea352f3f989 (diff) | |
download | zsh-11486424e9e96ce241529e1c63eb751cda94d0a6.tar.gz zsh-11486424e9e96ce241529e1c63eb751cda94d0a6.zip |
Simplify helpfiles generation in debian/rules (Closes: #737582)
This also makes debian/rules pure 7-bit ASCII again -- instead of
being ISO-8859-1. Yay! :-)
-rwxr-xr-x | debian/rules | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/debian/rules b/debian/rules index 4693cea4e..0baeab34e 100755 --- a/debian/rules +++ b/debian/rules @@ -101,9 +101,7 @@ binary-indep: build-indep binary-arch-dynamic dh_installdirs -i cd obj && $(MAKE) install.man DESTDIR=$(CURDIR)/debian/zsh-common - nroff -mandoc -Tascii Doc/zshbuiltins.1 | colcrt - | \ - sed -e 's/±/{+|-}/' | \ - perl $(CURDIR)/Util/helpfiles /dev/stdin debian/zsh-common/usr/share/zsh/help + perl $(CURDIR)/Util/helpfiles Doc/zshbuiltins.1 debian/zsh-common/usr/share/zsh/help # functions dh_installexamples -pzsh-common -X.distfiles |