Add STRIP="" instead of changing ${INSTALLPROGRAM} to ${INSTALL}

in dist Makefile.  And also strip the binaries.
This commit is contained in:
Masafumi Max NAKANE 1997-06-30 10:19:35 +00:00
parent f9d22e4856
commit cace0033fd
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=7138

View file

@ -3,7 +3,7 @@
# Date created: 10 October 1996 # Date created: 10 October 1996
# Whom: Yukihiro Nakai <Nakai@Mlab.t.u-tokyo.ac.jp> # Whom: Yukihiro Nakai <Nakai@Mlab.t.u-tokyo.ac.jp>
# #
# $Id: Makefile,v 1.3 1997/06/12 21:58:45 jdp Exp $ # $Id: Makefile,v 1.4 1997/06/30 09:43:12 max Exp $
# #
DISTNAME= guavac-0.3.1 DISTNAME= guavac-0.3.1
@ -17,5 +17,9 @@ MAINTAINER= Nakai@Mlab.t.u-tokyo.ac.jp
USE_GMAKE= yes USE_GMAKE= yes
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
MAN1= guavac.1 MAN1= guavac.1
STRIP=
post-install:
@strip ${PREFIX}/bin/guavac ${PREFIX}/bin/guavad
.include <bsd.port.mk> .include <bsd.port.mk>