oksh-noxz

[fork] Portable OpenBSD ksh, based on the Public Domain Korn Shell (pdksh).
git clone https://noxz.tech/git/oksh-noxz.git
oksh-noxz

commit: 792f70d3f568f99d6a73091de20a3b23f6e11f01
parent: 18047b741231f0ad30aecb5a6b51543b08400846
author: larryhynes <larryhynes@users.noreply.github.com>
date:   Fri, 8 Jun 2018 23:13:16 +0100
configure: prefix 'echo' in Makefile with @

This avoids a duplicate "Please add $prefix/bin/foo to /etc/shells" line being generated.792f70d3f568f99d6a73091de20a3b23f6e11f01
 configure | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure b/configure
@@ -752,12 +752,12 @@ EOF
 fi
 
 cat << EOF >> Makefile
-	echo "Please add $prefix/bin/$instprog to /etc/shells"
+	@echo "Please add $prefix/bin/$instprog to /etc/shells"
 EOF
 
 if [ $instsh -ne 0 ] ; then
 cat << EOF >> Makefile
-	echo "Please add $prefix/bin/sh to /etc/shells"
+	@echo "Please add $prefix/bin/sh to /etc/shells"
 EOF
 fi