diff options
author | Axel Beckert <abe@deuxchevaux.org> | 2013-12-02 16:55:41 +0100 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2013-12-02 16:55:41 +0100 |
commit | d1fce5543b151a31aae36c6cf24427518a963628 (patch) | |
tree | affb913fe29d4f3062c2b68f876bc4c604f021cd | |
parent | e30f40238ed5ed9a964dca35b0b31905f8e0e32f (diff) | |
download | zsh-d1fce5543b151a31aae36c6cf24427518a963628.tar.gz zsh-d1fce5543b151a31aae36c6cf24427518a963628.zip |
debian/rules: Util/helpfiles now requires parameters, reduce own magic
-rwxr-xr-x | debian/rules | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/rules b/debian/rules index 93cd185be..92c57d157 100755 --- a/debian/rules +++ b/debian/rules @@ -100,8 +100,8 @@ binary-indep: build-indep binary-arch-dynamic cd obj && $(MAKE) install.man DESTDIR=$(CURDIR)/debian/zsh-common nroff -mandoc -Tascii Doc/zshbuiltins.1 | colcrt - | \ - sed -e 's/±/{+|-}/' | ( cd debian/zsh-common/usr/share/zsh/help && \ - perl $(CURDIR)/Util/helpfiles ) + sed -e 's/±/{+|-}/' | \ + perl $(CURDIR)/Util/helpfiles /dev/stdin debian/zsh-common/usr/share/zsh/help # functions dh_installexamples -pzsh-common -X.distfiles |