From: Modestas Vainius Date: Thu, 11 Jun 2009 00:18:34 +0000 (+0300) Subject: Include Debian/Debhelper subdirs in syntax check. X-Git-Tag: 7.3.0~65 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;ds=sidebyside;h=f497dbc85a13c9e4cea603a4c2f14d220479a359;p=debhelper.git Include Debian/Debhelper subdirs in syntax check. --- diff --git a/t/syntax b/t/syntax index f80fa97..9245545 100755 --- a/t/syntax +++ b/t/syntax @@ -2,7 +2,7 @@ use Test; my @progs=grep { -x $_ } glob("dh_*"), "dh"; -my @libs=glob("Debian/Debhelper/*.pm"); +my @libs=(glob("Debian/Debhelper/*.pm"), glob("Debian/Debhelper/*/*.pm")); plan(tests => (@progs + @libs));