diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2001-02-21 20:59:06 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2001-02-21 20:59:06 +0000 |
commit | 67e5ab04f0fddddab5d14c190b805e4683a2a785 (patch) | |
tree | 0c1f664584b8a3c37b54215b2db7efe110f6b067 | |
parent | Put back my editor hints that were removed w/o permission. (diff) |
Change the manpage to say 'nawk' rather than just 'awk' to match the
installed binary name.
Obtained from: NetBSD
Notes
Notes:
svn path=/head/; revision=38569
-rw-r--r-- | lang/nawk/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lang/nawk/Makefile b/lang/nawk/Makefile index c24b21244fe7..47f5c794c28b 100644 --- a/lang/nawk/Makefile +++ b/lang/nawk/Makefile @@ -21,6 +21,7 @@ MAN1= nawk.1 do-install: ${INSTALL_PROGRAM} ${WRKSRC}/a.out ${PREFIX}/bin/nawk - ${INSTALL_MAN} ${WRKSRC}/awk.1 ${PREFIX}/man/man1/nawk.1 + ${SED} -e 's|awk|nawk|g' ${WRKSRC}/awk.1 > ${WRKSRC}/nawk.1 + ${INSTALL_MAN} ${WRKSRC}/nawk.1 ${PREFIX}/man/man1 .include <bsd.port.mk> |