diff options
author | jlam <jlam@pkgsrc.org> | 2002-02-03 13:38:38 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2002-02-03 13:38:38 +0000 |
commit | 816736410b47f086ee745f7dd303ebaf5df701a0 (patch) | |
tree | 8ebed6441b0d36f608c0f9a5ac4b1c388898a539 /mail/courier-imap | |
parent | 0f6286c61a5b7dcbacadc88cbde6c212da925c6f (diff) | |
download | pkgsrc-816736410b47f086ee745f7dd303ebaf5df701a0.tar.gz |
Fix reversed logic for setting INSTALL_TARGET=install-strip. Of course,
we want to strip when STRIPFLAGS contains "-s" and not otherwise. Pointed
out by Amatai Schlair in private e-mail.
Diffstat (limited to 'mail/courier-imap')
-rw-r--r-- | mail/courier-imap/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/mail/courier-imap/Makefile b/mail/courier-imap/Makefile index ca8f3d983de..ff0ec2c53c7 100644 --- a/mail/courier-imap/Makefile +++ b/mail/courier-imap/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2002/01/23 02:22:20 jlam Exp $ +# $NetBSD: Makefile,v 1.11 2002/02/03 13:38:38 jlam Exp $ DISTNAME= courier-imap-1.4.2 PKGREVISION= 1 @@ -16,10 +16,8 @@ REPLACE_PERL= sysconftool CONFIGURE_ENV+= OPENSSL=${BUILDLINK_PREFIX.openssl}/bin/openssl -.if !defined(STRIPFLAG) || empty(STRIPFLAG:M-s) +.if defined(STRIPFLAG) && !empty(STRIPFLAG:M-s) INSTALL_TARGET= install-strip -.else -INSTALL_TARGET= install .endif SYSCONFTOOL= ${PREFIX}/sbin/imapd.sysconftool |