mirror of
https://github.com/opnsense/src.git
synced 2026-03-26 04:33:12 -04:00
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
This commit is contained in:
parent
4fc18ff9bb
commit
05f0ff5a30
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue