diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2007-07-05 22:09:07 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2007-07-05 22:09:07 +0000 |
commit | fa5e57fe96319e30a99eabaf94bdea2008c2b415 (patch) | |
tree | 65156aaa5be934fb4d49f691f9e5684e34653c6e /app/xterm/Makefile | |
parent | 99403a15bc2cfb60185aac050ad6589696a903a1 (diff) |
the xterm manual page needs to be pre-processed by tbl.
Diffstat (limited to 'app/xterm/Makefile')
-rw-r--r-- | app/xterm/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/xterm/Makefile b/app/xterm/Makefile index 4869e142c..8abf0617b 100644 --- a/app/xterm/Makefile +++ b/app/xterm/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.5 2007/06/15 19:43:57 matthieu Exp $ +# $OpenBSD: Makefile,v 1.6 2007/07/05 22:09:06 matthieu Exp $ SUBDIR= resize PROG= xterm -MAN= xterm.1 +MAN= xterm.1tbl BINGRP= utmp BINMODE= 2755 @@ -26,13 +26,13 @@ X11BASE?= /usr/X11R6 MANDIR= ${X11BASE}/man/cat XETC?= /etc/X11 -xterm.1: xterm.man +xterm.1tbl: xterm.man sed -e 's#__vendorversion__#"X Window System"#g' \ -e 's#__miscmansuffix__#1#g' \ -e 's#__apploaddir__#${X11ETC}/app-defaults#g' \ < ${.CURDIR}/xterm.man > $@ -CLEANFILES+= xterm.1 +CLEANFILES+= xterm.1tbl afterinstall: ${INSTALL} ${INSTALL_COPY} -m 755 ${.CURDIR}/uxterm \ |