diff options
Diffstat (limited to 'editors/elvis/patches/patch-aa')
-rw-r--r-- | editors/elvis/patches/patch-aa | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/editors/elvis/patches/patch-aa b/editors/elvis/patches/patch-aa new file mode 100644 index 00000000000..8f53e4af3d5 --- /dev/null +++ b/editors/elvis/patches/patch-aa @@ -0,0 +1,27 @@ +$NetBSD: patch-aa,v 1.1.1.1 2004/01/20 21:16:07 recht Exp $ + +--- instman.sh.orig 2003-10-21 04:32:25.000000000 +0200 ++++ instman.sh 2003-12-09 20:42:20.000000000 +0100 +@@ -207,18 +207,18 @@ + install) + if [ -x /usr/bin/nroff ] + then +- /usr/bin/nroff -man doc/$i.man >$catdir/$i$ext ++ /usr/bin/nroff -man doc/$i.man >$catdir/$i.0 + elif [ -x ./elvis ] + then + ELVISPATH=dummypath; export ELVISPATH +- ./elvis -Gquit -c"se bd=man lpt=bs lplines=0|lp! $catdir/$i$ext" doc/$i.man ++ ./elvis -Gquit -c"se bd=man lpt=bs lplines=0|lp! $catdir/$i.0" doc/$i.man + else + # give nroff another chance +- nroff -man doc/$i.man >$catdir/$i$ext ++ nroff -man doc/$i.man >$catdir/$i.0 + fi + ;; + remove) +- rm $catdir/$i$ext* ++ rm $catdir/$i.0 + ;; + esac + done |