diff options
author | tron <tron> | 1998-04-12 23:34:21 +0000 |
---|---|---|
committer | tron <tron> | 1998-04-12 23:34:21 +0000 |
commit | 29fd198537b90b1e1cdc7bf3e35537937ee4e9e5 (patch) | |
tree | 7a361fac1bb73de5c886ff3decfcf209bdafff3d | |
parent | 770c1919a2750c6af0d3e0b9fc8972282e54e220 (diff) | |
download | pkgsrc-29fd198537b90b1e1cdc7bf3e35537937ee4e9e5.tar.gz |
Tell "configure" to strip binaries while linking instead of calling
"strip" after installation.
-rw-r--r-- | mail/mutt/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/mutt/Makefile b/mail/mutt/Makefile index f1d9e3ea1b0..48103f557ea 100644 --- a/mail/mutt/Makefile +++ b/mail/mutt/Makefile @@ -4,7 +4,7 @@ # Date Created: 11 April 1998 # Whom: tron # -# $NetBSD: Makefile,v 1.3 1998/04/12 23:27:43 tron Exp $ +# $NetBSD: Makefile,v 1.4 1998/04/12 23:34:21 tron Exp $ DISTNAME= mutt-0.91i CATEGORIES= mail @@ -22,11 +22,11 @@ RESTRICTED= "Uses PGP" MIRROR_DISTFILE= no GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-curses=${PREFIX} +CONFIGURE_ENV+= LDFLAGS=-s MAN1= mutt.1 post-install: - strip ${PREFIX}/bin/mutt ${MKDIR} ${PREFIX}/share/doc/mutt ${CP} ${WRKSRC}/doc/manual.txt ${PREFIX}/share/doc/mutt ${CP} ${WRKSRC}/doc/pgp-Notes.txt ${PREFIX}/share/doc/mutt |