diff options
author | joerg <joerg> | 2008-03-09 13:47:08 +0000 |
---|---|---|
committer | joerg <joerg> | 2008-03-09 13:47:08 +0000 |
commit | f7577492554b1e8651012135923189ffad92b90c (patch) | |
tree | 5d9dd698845c2c9b88e8a1ecb50cc3a22a0ae137 /mk/check | |
parent | ac368a32df7effcbcec6d8d33837c92a23c59444 (diff) | |
download | pkgsrc-f7577492554b1e8651012135923189ffad92b90c.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 |