diff options
author | jmmv <jmmv@FreeBSD.org> | 2014-05-12 21:21:32 +0000 |
---|---|---|
committer | jmmv <jmmv@FreeBSD.org> | 2014-05-12 21:21:32 +0000 |
commit | 4d2303530177123eec5f42beafddfda5636aec85 (patch) | |
tree | 57d4084231b2a2ea0338f3cce7859ff60ca6e3bd /tools | |
parent | c9657637056025235092a022adfb75861f0d396e (diff) | |
download | FreeBSD-src-4d2303530177123eec5f42beafddfda5636aec85.zip FreeBSD-src-4d2303530177123eec5f42beafddfda5636aec85.tar.gz |
Fix delete-old when WITH_TESTS is set.
r265423 removed the WITHOUT_BMAKE option, which in turn broke a conditional
in OptionalObsoleteFiles.inc that inspected MK_BMAKE.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/build/mk/OptionalObsoleteFiles.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/build/mk/OptionalObsoleteFiles.inc b/tools/build/mk/OptionalObsoleteFiles.inc index 0a991a7..bb166f8 100644 --- a/tools/build/mk/OptionalObsoleteFiles.inc +++ b/tools/build/mk/OptionalObsoleteFiles.inc @@ -4129,7 +4129,7 @@ OLD_FILES+=usr/tests/lib/atf/libatf-c/process_test OLD_FILES+=usr/tests/lib/atf/libatf-c/sanity_test OLD_FILES+=usr/tests/lib/atf/libatf-c/text_test OLD_FILES+=usr/tests/lib/atf/libatf-c/user_test -.if ${MK_MAKE} == yes && ${MK_BMAKE} == yes +.if ${MK_MAKE} == yes OLD_FILES+=usr/tests/usr.bin/make/archives/fmt_44bsd/legacy_test OLD_FILES+=usr/tests/usr.bin/make/archives/fmt_44bsd/Kyuafile OLD_FILES+=usr/tests/usr.bin/make/archives/fmt_44bsd/Makefile.test |