diff options
author | joerg <joerg@pkgsrc.org> | 2008-03-09 13:47:08 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2008-03-09 13:47:08 +0000 |
commit | 630dcf7283b2c3ab0ac7630ccb56334952dd4e6d (patch) | |
tree | 5d9dd698845c2c9b88e8a1ecb50cc3a22a0ae137 /mk/check | |
parent | d975c9dd3a022438d81d2ea7459810552fe4dd8d (diff) | |
download | pkgsrc-630dcf7283b2c3ab0ac7630ccb56334952dd4e6d.tar.gz |
Enable USE_CHECK_SHLIBS_ELF by default on DragonFly and NetBSD.
Diffstat (limited to 'mk/check')
-rw-r--r-- | mk/check/bsd.check-vars.mk | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mk/check/bsd.check-vars.mk b/mk/check/bsd.check-vars.mk index 5e23cffcf0a..703ea0b368b 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.4 2007/08/20 11:04:02 joerg Exp $ +# $NetBSD: bsd.check-vars.mk,v 1.5 2008/03/09 13:47:08 joerg Exp $ # # This Makefile fragment is included separately by bsd.pkg.mk and # defines some variables which must be defined earlier than where @@ -7,7 +7,12 @@ CHECK_FILES_SUPPORTED?= yes CHECK_SHLIBS_SUPPORTED?= yes + +.if ${OPSYS} == "NetBSD" || ${OPSYS} == "DragonFly" +USE_CHECK_SHLIBS_ELF?= yes +.else USE_CHECK_SHLIBS_ELF?= no +.endif USE_TOOLS+= awk cat cmp diff echo find grep rm sed test touch true |