From 960a3906fed62927b8792adc9136ebaf7130f7f5 Mon Sep 17 00:00:00 2001 From: Evan Hunt Date: Thu, 6 Dec 2018 17:21:38 -0800 Subject: [PATCH] checklibs needs to grep for the cfg_* prefix in lib/isccfg (cherry picked from commit ab7356a7de935c930ffbeba67b6ca58f32679be3) --- util/checklibs.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/util/checklibs.sh b/util/checklibs.sh index c92874d411..c16cc3eb29 100755 --- a/util/checklibs.sh +++ b/util/checklibs.sh @@ -93,6 +93,7 @@ do test -z "$dirs" && continue; pat=$lib test $lib = dns && pat='\(dns\|dst\)' + test $lib = isccfg && pat='cfg' pat="^${pat}_[a-z0-9_]*(" list=`git ls-files -c $dirs | grep '\.h$' | xargs grep "$pat" |