diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2008-01-13 17:22:59 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2008-01-13 17:22:59 +0000 |
commit | 12789004b3a17208a87eb18e18e56e15b357d2bd (patch) | |
tree | 2757856d1137d029a4ce4acae9decd211fd454df | |
parent | 4d84d6e7d1a42b3e77a490422a2df7f774318ff1 (diff) |
More __foo__ substitutions for xterm manual pages. From
Tim van der Molen, Thanks.
-rw-r--r-- | app/xterm/Makefile | 7 | ||||
-rw-r--r-- | app/xterm/resize/Makefile | 7 |
2 files changed, 8 insertions, 6 deletions
diff --git a/app/xterm/Makefile b/app/xterm/Makefile index 643bb0753..77360c346 100644 --- a/app/xterm/Makefile +++ b/app/xterm/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.7 2007/08/25 19:17:16 matthieu Exp $ +# $OpenBSD: Makefile,v 1.8 2008/01/13 17:22:58 matthieu Exp $ SUBDIR= icons resize @@ -28,9 +28,10 @@ XETC?= /etc/X11 xterm.1tbl: xterm.man sed -e 's#__vendorversion__#"X Window System"#g' \ + -e 's#__mansuffix__#1#g' \ -e 's#__miscmansuffix__#1#g' \ - -e 's#__apploaddir__#${X11ETC}/app-defaults#g' \ - < ${.CURDIR}/xterm.man > $@ + -e 's#__apploaddir__#${X11ETC}/app-defaults#g' \ + < ${.CURDIR}/xterm.man > $@ CLEANFILES+= xterm.1tbl diff --git a/app/xterm/resize/Makefile b/app/xterm/resize/Makefile index 032aa2a6c..7abf4539d 100644 --- a/app/xterm/resize/Makefile +++ b/app/xterm/resize/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.2 2007/05/11 06:54:20 matthieu Exp $ +# $OpenBSD: Makefile,v 1.3 2008/01/13 17:22:58 matthieu Exp $ PROG= resize MAN= resize.1 @@ -17,9 +17,10 @@ SRCS= resize.c xstrings.c resize.1: resize.man sed -e 's#__vendorversion__#"X Window System"#g' \ + -e 's#__mansuffix__#1#g' \ -e 's#__miscmansuffix__#1#g' \ - -e 's#__apploaddir__#${X11ETC}/app-defaults#g' \ - < ${.CURDIR}/../resize.man > $@ + -e 's#__apploaddir__#${X11ETC}/app-defaults#g' \ + < ${.CURDIR}/../resize.man > $@ CLEANFILES+= resize.1 |