diff options
author | Masafumi Max NAKANE <max@FreeBSD.org> | 1996-12-08 01:05:19 +0000 |
---|---|---|
committer | Masafumi Max NAKANE <max@FreeBSD.org> | 1996-12-08 01:05:19 +0000 |
commit | e81523971ca07768207ae9acf69c153e59cb5a11 (patch) | |
tree | f53b66c9ceae7a5c6865d413233facac42b152bb | |
parent | No `.' is needed at the end of the reason string for NO_CDROM, NO_PACKAGE, (diff) |
No `.' is needed at the end of the reason string for NO_CDROM, NO_PACKAGE,
RESTRICTED or BROKEN.
Pointed-out by: asami
cp ->${CP}
Notes
Notes:
svn path=/head/; revision=4881
-rw-r--r-- | www/wn/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/www/wn/Makefile b/www/wn/Makefile index 63bf8bd2a8b1..5fe161cddd88 100644 --- a/www/wn/Makefile +++ b/www/wn/Makefile @@ -3,7 +3,7 @@ # Date created: 4 May 1995 # Whom: adam # -# $Id: Makefile,v 1.16 1996/11/18 11:42:21 asami Exp $ +# $Id: Makefile,v 1.17 1996/12/07 11:26:58 max Exp $ # DISTNAME= wn-1.16.1 @@ -11,15 +11,15 @@ CATEGORIES= www MASTER_SITES= ftp://ftp.acns.nwu.edu/pub/wn/ IS_INTERACTIVE= -NO_PACKAGE= "Hostname compiled in." +NO_PACKAGE= "Hostname compiled in" pre-patch: - @cp ${WRKSRC}/Makefile.dist ${WRKSRC}/Makefile - @cp ${WRKSRC}/config.h.dist ${WRKSRC}/config.h + @${CP} ${WRKSRC}/Makefile.dist ${WRKSRC}/Makefile + @${CP} ${WRKSRC}/config.h.dist ${WRKSRC}/config.h post-install: @mkdir -p ${PREFIX}/wn/wnlogs ${PREFIX}/wn/bin - @cp -PR ${WRKSRC}/docs ${PREFIX}/wn + @${CP} -PR ${WRKSRC}/docs ${PREFIX}/wn @install -c -o bin -g bin ${WRKSRC}/bin/wn ${PREFIX}/libexec @install -c -o bin -g bin ${WRKSRC}/bin/swn ${PREFIX}/sbin @install -c -o bin -g bin ${WRKSRC}/bin/wndex ${PREFIX}/bin |