diff options
author | harti <harti@FreeBSD.org> | 2005-03-02 12:33:23 +0000 |
---|---|---|
committer | harti <harti@FreeBSD.org> | 2005-03-02 12:33:23 +0000 |
commit | 13d684fd1525f8508869868220695b0f79f56bb3 (patch) | |
tree | 1a7d54ecfd0cecef220d21757257b59b2092a04e /Makefile | |
parent | 9cbbd424d80823679983cc2c5ab5fa716281d16c (diff) | |
download | FreeBSD-src-13d684fd1525f8508869868220695b0f79f56bb3.zip FreeBSD-src-13d684fd1525f8508869868220695b0f79f56bb3.tar.gz |
Repo-copy tools/regression/usr.bin/make to tools/build/make_check
and adjust the path in the Makefile for the upgrade_checks target.
These checks are really feature upgrade checks that should be fast
and just find out whether we need to build a new make before
proceeding with other targets like buildworld. This makes the
place free for a real regression test suite in the old place.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -217,7 +217,7 @@ kernel: buildkernel installkernel # for building the world. # upgrade_checks: - @if ! (cd ${.CURDIR}/tools/regression/usr.bin/make && \ + @if ! (cd ${.CURDIR}/tools/build/make_check && \ PATH=${PATH} ${BINMAKE} obj >/dev/null 2>&1 && \ PATH=${PATH} ${BINMAKE} >/dev/null 2>&1); \ then \ |