diff options
author | ben <ben@pkgsrc.org> | 2003-12-11 19:41:56 +0000 |
---|---|---|
committer | ben <ben@pkgsrc.org> | 2003-12-11 19:41:56 +0000 |
commit | 340a31bc4c305a0307058318c7b5d5a0758b8a07 (patch) | |
tree | de19cf541ce8c7eb211e638cbf7d36dd3e204e7c /textproc | |
parent | f8fdcadb759e19081bc0ad6e176dad844e1f687f (diff) | |
download | pkgsrc-340a31bc4c305a0307058318c7b5d5a0758b8a07.tar.gz |
Use stdarg instead of varargs.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/rtf-tools/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/textproc/rtf-tools/Makefile b/textproc/rtf-tools/Makefile index 3bf31d60a6d..23a78cb916d 100644 --- a/textproc/rtf-tools/Makefile +++ b/textproc/rtf-tools/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2003/12/11 19:24:33 ben Exp $ +# $NetBSD: Makefile,v 1.9 2003/12/11 19:41:56 ben Exp $ # DISTNAME= RTF-1.10 @@ -21,6 +21,7 @@ post-patch: for i in `${FIND} ${WRKSRC} -name Makefile`; do \ ${MV} $$i $$i.bak;\ ${SED} <$$i.bak >$$i \ + -e "s|-DVARARGS|-DSTDARGS|g" \ -e "s|/usr/local|${PREFIX}|g" \ -e "s|/usr/man|${PREFIX}/man|" \ -e "s|\(LOCALBINDIR =.*\)|\1/bin|" ;\ |