diff options
author | agc <agc@pkgsrc.org> | 2009-07-26 05:32:43 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2009-07-26 05:32:43 +0000 |
commit | d1a91185ccd9790d6781769e4be047e9d7caae2e (patch) | |
tree | 41adc4086865602b97d9241349597bd04bc6b058 /mk/check | |
parent | b8ecb348df8b657d18753f775e6fc6bbb6391e78 (diff) | |
download | pkgsrc-d1a91185ccd9790d6781769e4be047e9d7caae2e.tar.gz |
Get rid of an abstraction violation which has been in the tree since
March 2008. Not vital, but the previous way does not scale well/at all.
Diffstat (limited to 'mk/check')
-rw-r--r-- | mk/check/bsd.check-vars.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/check/bsd.check-vars.mk b/mk/check/bsd.check-vars.mk index a5dab08256c..4dfadc74ef7 100644 --- a/mk/check/bsd.check-vars.mk +++ b/mk/check/bsd.check-vars.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.check-vars.mk,v 1.6 2008/05/13 11:40:24 tnn Exp $ +# $NetBSD: bsd.check-vars.mk,v 1.7 2009/07/26 05:32:43 agc Exp $ # # This Makefile fragment is included separately by bsd.pkg.mk and # defines some variables which must be defined earlier than where @@ -8,7 +8,7 @@ CHECK_FILES_SUPPORTED?= yes CHECK_SHLIBS_SUPPORTED?= yes -.if ${OPSYS} == "NetBSD" || ${OPSYS} == "DragonFly" || ${OPSYS} == "FreeBSD" +.if ${_OPSYS_CAN_CHECK_SHLIBS} == "yes" USE_CHECK_SHLIBS_ELF?= yes .else USE_CHECK_SHLIBS_ELF?= no |