diff options
author | obache <obache@pkgsrc.org> | 2008-08-10 02:41:26 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2008-08-10 02:41:26 +0000 |
commit | 340c0085539be74efe852de14471279e763f8ba2 (patch) | |
tree | bb9dfbf006583c02399d9ed2ce52d24ef588a3d3 /audio/xmcd/Makefile | |
parent | 14e407fbaec48d1b322a91cb263a80a2f59f795f (diff) | |
download | pkgsrc-340c0085539be74efe852de14471279e763f8ba2.tar.gz |
Stop to use internal variable _STRIPFLAG_INSTALL to detect need to strip or not.
It is handled automatically with tools wrapper script.
Part of PR 15107.
Diffstat (limited to 'audio/xmcd/Makefile')
-rw-r--r-- | audio/xmcd/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/audio/xmcd/Makefile b/audio/xmcd/Makefile index 69373e0fc1c..f53200bf1b7 100644 --- a/audio/xmcd/Makefile +++ b/audio/xmcd/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.70 2008/07/15 18:44:27 tron Exp $ +# $NetBSD: Makefile,v 1.71 2008/08/10 02:41:26 obache Exp $ DISTNAME= xmcd-3.0.2 PKGREVISION= 10 @@ -52,11 +52,9 @@ SUBST_FILES.xmcd= libdi_d/config.sh misc_d/start.sh install.sh SUBST_VARS.xmcd= MACHINE_ARCH post-install: - if [ -n "${_STRIPFLAG_INSTALL}" ]; then \ - for file in cda xmcd gobrowser; do \ - strip ${ARCHBIN}/$$file; \ - done; \ - fi + for file in cda xmcd gobrowser; do \ + strip ${ARCHBIN}/$$file; \ + done; .if ${OPSYS} != "SunOS" .include "../../devel/ncurses/buildlink3.mk" |