diff options
author | obrien <obrien@FreeBSD.org> | 1996-12-01 01:23:27 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1996-12-01 01:23:27 +0000 |
commit | 8efcf00b2e5836ef32baf7637535242a296a8c38 (patch) | |
tree | 6d6249f3f223daa0ca98c880b13d349c86a0942c /net/rsync | |
parent | 238c02c9d9fee5aee4bb8357a9efa521b3d1364e (diff) | |
download | FreeBSD-ports-8efcf00b2e5836ef32baf7637535242a296a8c38.zip FreeBSD-ports-8efcf00b2e5836ef32baf7637535242a296a8c38.tar.gz |
General Makefile cleanup
Add MAINATERS
mkdir -p ==> ${MKDIR}
cp ==> ${CP}
install ==> ${INSTALL}/${INSTALL_*}
etc...
Diffstat (limited to 'net/rsync')
-rw-r--r-- | net/rsync/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/rsync/Makefile b/net/rsync/Makefile index 1192103..e23b884 100644 --- a/net/rsync/Makefile +++ b/net/rsync/Makefile @@ -3,7 +3,7 @@ # Date created: Sat Aug 3, 1996 # Whom: David O'Brien (obrien@cs.ucdavis.edu) # -# $Id: Makefile,v 1.3 1996/11/18 11:36:09 asami Exp $ +# $Id: Makefile,v 1.4 1996/12/01 00:22:48 obrien Exp $ # DISTNAME= rsync-1.6.2 @@ -17,9 +17,9 @@ GNU_CONFIGURE= yes MAN1= rsync.1 post-install: - strip ${PREFIX}/bin/rsync + @strip ${PREFIX}/bin/rsync .if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/rsync + @${MKDIR} ${PREFIX}/share/doc/rsync ${INSTALL_DATA} ${WRKSRC}/tech_report.ps ${PREFIX}/share/doc/rsync .endif |