From ce00a51984af030e47bbd85ca21840d8a54e959b Mon Sep 17 00:00:00 2001 From: jperkin Date: Mon, 17 Aug 2015 16:39:13 +0000 Subject: Fix check-shlibs regular expression to match .dylib/.sl the same as .so --- mk/check/check-shlibs.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mk/check') diff --git a/mk/check/check-shlibs.mk b/mk/check/check-shlibs.mk index 1eb2c8b57d4..2f7f5074678 100644 --- a/mk/check/check-shlibs.mk +++ b/mk/check/check-shlibs.mk @@ -1,4 +1,4 @@ -# $NetBSD: check-shlibs.mk,v 1.24 2014/10/12 23:39:17 joerg Exp $ +# $NetBSD: check-shlibs.mk,v 1.25 2015/08/17 16:39:13 jperkin Exp $ # # This file verifies that all libraries used by the package can be found # at run-time. @@ -38,7 +38,7 @@ CHECK_SHLIBS_SUPPORTED?= yes CHECK_SHLIBS_SKIP?= # none # All binaries and shared libraries. -_CHECK_SHLIBS_ERE= (bin/|sbin/|libexec/|\.so$$|lib/lib.*\.so|lib/lib.*\.dylib|lib/lib.*\.sl) +_CHECK_SHLIBS_ERE= (bin/|sbin/|libexec/|\.(dylib|sl|so)$$|lib/lib.*\.(dylib|sl|so)) _CHECK_SHLIBS_FILELIST_CMD?= ${SED} -e '/^@/d' ${PLIST} | \ (while read file; do \ -- cgit v1.2.3