diff options
author | jlam <jlam> | 2002-02-03 13:38:38 +0000 |
---|---|---|
committer | jlam <jlam> | 2002-02-03 13:38:38 +0000 |
commit | b1a51a77601189423cb3d6859f09c1afdb47d89e (patch) | |
tree | 8ebed6441b0d36f608c0f9a5ac4b1c388898a539 /mail/courier-auth | |
parent | b38452d00864a0a40bc90cf9921fe4fcbe529fde (diff) | |
download | pkgsrc-b1a51a77601189423cb3d6859f09c1afdb47d89e.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-auth')
-rw-r--r-- | mail/courier-auth/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/mail/courier-auth/Makefile b/mail/courier-auth/Makefile index fbacd86997a..fa751548459 100644 --- a/mail/courier-auth/Makefile +++ b/mail/courier-auth/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2002/01/27 23:47:08 jlam Exp $ +# $NetBSD: Makefile,v 1.4 2002/02/03 13:38:38 jlam Exp $ PKGNAME= courier-auth-${BASE_VERS} PKGREVISION?= 1 @@ -14,10 +14,8 @@ REPLACE_PERL= sysconftool .include "../../mail/courier-auth/Makefile.authdaemond" -.if !defined(STRIPFLAG) || empty(STRIPFLAG:M-s) +.if defined(STRIPFLAG) && !empty(STRIPFLAG:M-s) INSTALL_TARGET= install-strip -.else -INSTALL_TARGET= install .endif GEN_FILES= authdaemonrc |