diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 1998-12-18 09:06:29 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 1998-12-18 09:06:29 +0000 |
commit | e1367d6ff3a762d8f3bc53ba07f8fb61f3b04b87 (patch) | |
tree | 2296e1ef41184de10600355d9ac5d78a2ca32460 /net/rsync | |
parent | 33b4afff4b3cd077d5e006d1c507908b634d2e2b (diff) | |
download | freebsd-ports-e1367d6ff3a762d8f3bc53ba07f8fb61f3b04b87.zip |
Fix PREFIX expansion in manpage.
Diffstat (limited to 'net/rsync')
-rw-r--r-- | net/rsync/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/net/rsync/Makefile b/net/rsync/Makefile index f30222d9a709..f4342f57b024 100644 --- a/net/rsync/Makefile +++ b/net/rsync/Makefile @@ -4,7 +4,7 @@ # Date created: Sat Aug 3, 1996 # Whom: David O'Brien (obrien@cs.ucdavis.edu) # -# $Id: Makefile,v 1.19 1998/12/08 21:40:06 billf Exp $ +# $Id: Makefile,v 1.20 1998/12/09 03:03:13 billf Exp $ # DISTNAME= rsync-2.2.1 @@ -20,6 +20,11 @@ GNU_CONFIGURE= yes MAN1= rsync.1 MAN5= rsyncd.conf.5 +pre-configure: + @${MV} ${WRKSRC}/rsync.1 ${WRKSRC}/rsync.1.in + @${SED} -e 's:%%PREFIX%%:${PREFIX}:g' \ + ${WRKSRC}/rsync.1.in > ${WRKSRC}/rsync.1 + post-install: @strip ${PREFIX}/bin/rsync .if !defined(NOPORTDOCS) |