diff options
author | tv <tv@pkgsrc.org> | 1998-03-25 17:50:15 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 1998-03-25 17:50:15 +0000 |
commit | 1441c12337f3c0d3631a1d52c429e73599b47c95 (patch) | |
tree | 64306cd6f0b344188664ae4ef631613409d2448b /devel/cvs | |
parent | 673b56e399fe670bb8a00b552f5d58a9c470338c (diff) | |
download | pkgsrc-1441c12337f3c0d3631a1d52c429e73599b47c95.tar.gz |
Retroportlint: Honor the user's stripflag setting, not by consitionalizing
on ${STRIPFLAG}, but instead by removing and re${INSTALL_PROGRAM}ing the
binary.
Diffstat (limited to 'devel/cvs')
-rw-r--r-- | devel/cvs/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/devel/cvs/Makefile b/devel/cvs/Makefile index c8693501d9b..258d3698adf 100644 --- a/devel/cvs/Makefile +++ b/devel/cvs/Makefile @@ -3,7 +3,7 @@ # Date created: 15 November 1997 # Whom: lamj@stat.cmu.edu # -# $NetBSD: Makefile,v 1.6 1998/02/14 16:47:46 hubertf Exp $ +# $NetBSD: Makefile,v 1.7 1998/03/25 17:50:15 tv Exp $ # DISTNAME= cvs-1.9 @@ -28,7 +28,8 @@ MAN5= cvs.5 MAN8= cvsbug.8 post-install: - strip ${PREFIX}/bin/cvs + ${RM} -f ${PREFIX}/bin/cvs + ${INSTALL_PROGRAM} ${WRKSRC}/src/cvs ${PREFIX}/bin/ install-info --info-dir=${PREFIX}/info ${PREFIX}/info/cvs.info install-info --info-dir=${PREFIX}/info ${PREFIX}/info/cvsclient.info ${SH} ${PKGDIR}/INSTALL ${DISTNAME} POST-INSTALL |