summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorngie <ngie@FreeBSD.org>2014-10-29 04:32:46 +0000
committerngie <ngie@FreeBSD.org>2014-10-29 04:32:46 +0000
commitbfd8ea0720840171bc38785724a72b105cde7a76 (patch)
tree80898ecfbd8a51c14f0c9fcbf191592260a88ea9 /share
parente1805defee550f3ab4638c681803c6b7dd62e266 (diff)
downloadFreeBSD-src-bfd8ea0720840171bc38785724a72b105cde7a76.zip
FreeBSD-src-bfd8ea0720840171bc38785724a72b105cde7a76.tar.gz
Fix the logic inversion in the previous commit by ensuring that the matched
expression (:M) is empty, not the not matched (:N) is empty. The former case means we have not found the TEST_SUBDIR value in SUBDIR Reported by: rodrigc X-MFC with: r273803 Pointyhat to: me (did not use a clean install root) Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'share')
-rw-r--r--share/mk/bsd.test.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/mk/bsd.test.mk b/share/mk/bsd.test.mk
index 19a2305..b204a3c 100644
--- a/share/mk/bsd.test.mk
+++ b/share/mk/bsd.test.mk
@@ -55,7 +55,7 @@ _TESTS=
.include <tap.test.mk>
.for ts in ${TESTS_SUBDIRS}
-.if empty(SUBDIR:N${ts})
+.if empty(SUBDIR:M${ts})
SUBDIR+= ${ts}
.endif
.endfor
OpenPOWER on IntegriCloud