diff options
-rwxr-xr-x | mk/scripts/mkreadme | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/mk/scripts/mkreadme b/mk/scripts/mkreadme index 41e83445823..14377be5992 100755 --- a/mk/scripts/mkreadme +++ b/mk/scripts/mkreadme @@ -1,5 +1,5 @@ #!/bin/sh -# $NetBSD: mkreadme,v 1.29 2016/07/07 11:29:34 wiz Exp $ +# $NetBSD: mkreadme,v 1.30 2016/08/19 12:17:26 wiz Exp $ # # Script for README.html generation # @@ -265,25 +265,16 @@ echo "Starting README.html generation: `date`" ###################################################################### echo " " -echo "Extracting tool variables:" -echo " " +echo "Extracting tool variables" if [ -d ${PKGSRCDIR}/pkgtools/prereq-readme ]; then cd ${PKGSRCDIR}/pkgtools/prereq-readme eval "`${BMAKE} show-tools`" - if [ "x$quiet" != "xno" ]; then - for v in AWK CMP ECHO EXPR FGREP FIND GREP GZIP_CMD SED SETENV SORT - do - eval "echo '---->' ${v}=\"\${${v}}\"" - done - fi else echo "Error: ${PKGSRCDIR}/pkgtools/prereq-readme does not seem to exist" exit 1 fi -echo " " -echo "Extracting configuration variables:" -echo " " +echo "Extracting configuration variables" if [ -d ${PKGSRCDIR}/pkgtools/prereq-readme ]; then cd ${PKGSRCDIR}/pkgtools/prereq-readme for v in CDROM_PKG_URL_HOST CDROM_PKG_URL_DIR DISTDIR \ @@ -296,9 +287,6 @@ if [ -d ${PKGSRCDIR}/pkgtools/prereq-readme ]; then echo "Failed. This is a fatal error" clean_and_exit fi - if [ "x$quiet" != "xno" ]; then - echo "----> ${v}=\"${val}\"" - fi eval "${v}=\"${val}\"" done else |