diff options
author | ngie <ngie@FreeBSD.org> | 2014-10-29 04:32:46 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2014-10-29 04:32:46 +0000 |
commit | bfd8ea0720840171bc38785724a72b105cde7a76 (patch) | |
tree | 80898ecfbd8a51c14f0c9fcbf191592260a88ea9 /share | |
parent | e1805defee550f3ab4638c681803c6b7dd62e266 (diff) | |
download | FreeBSD-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.mk | 2 |
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 |