diff options
author | imp <imp@FreeBSD.org> | 2003-08-25 18:30:06 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2003-08-25 18:30:06 +0000 |
commit | 59cb58f3f1999df7487bc8d3eb48d451013c4a08 (patch) | |
tree | 15f275751bd4a4cbf394963094529d2ca4d65088 | |
parent | dd084178f0bd183cb6b96e5f622d7c46d5ea0c76 (diff) | |
download | FreeBSD-src-59cb58f3f1999df7487bc8d3eb48d451013c4a08.zip FreeBSD-src-59cb58f3f1999df7487bc8d3eb48d451013c4a08.tar.gz |
Add @ before the shell invocation for the testing of sufficiently new sh.
No need to see this message twice.
-rw-r--r-- | Makefile.inc1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1 index 20579fe..0f1264a 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -391,7 +391,7 @@ installcheck: .if ${TARGET_ARCH} == ${MACHINE_ARCH} && !defined(DISTDIR) && \ (!defined(DESTDIR) || empty(DESTDIR) || ${DESTDIR} == "/") @echo "Checking to see if your booted kernel is fresh enough.." - ${.OBJDIR}/bin/sh/sh -c \ + @${.OBJDIR}/bin/sh/sh -c \ 'echo "Testing installed kernel for new sigaction(2) syscall"' @echo "Seems ok.." .endif |