diff options
author | obrien <obrien@FreeBSD.org> | 2010-10-12 18:20:38 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2010-10-12 18:20:38 +0000 |
commit | 5289908373dba0a99d9cfa2640403088bc79ec1f (patch) | |
tree | b72a5101467211570f0b4e3a0b1be8742e48fead /bin | |
parent | 25fc6050f996192609bb84ec57545156d89181c6 (diff) | |
download | FreeBSD-src-5289908373dba0a99d9cfa2640403088bc79ec1f.zip FreeBSD-src-5289908373dba0a99d9cfa2640403088bc79ec1f.tar.gz |
Allow one to regression test 'sh' changes without having to install
a potentially bad /bin/sh first.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/sh/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/sh/Makefile b/bin/sh/Makefile index 337264b..e3c25e1 100644 --- a/bin/sh/Makefile +++ b/bin/sh/Makefile @@ -62,4 +62,7 @@ syntax.c syntax.h: mksyntax token.h: mktokens sh ${.CURDIR}/mktokens +regress: + cd ${.CURDIR}/../../tools/regression/bin/sh && ${MAKE} SH=${.OBJDIR}/sh + .include <bsd.prog.mk> |