changeset 61:220985c5e013

small improvements in script output (by Rocco Rutte)
author Volker Grabsch <vog@notjusthosting.com>
date Wed, 04 Jul 2007 14:11:56 +0000
parents a1195af1b5e6
children de47656ba778
files build_mingw_cross_env.sh
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/build_mingw_cross_env.sh	Wed Jul 04 14:06:46 2007 +0000
+++ b/build_mingw_cross_env.sh	Wed Jul 04 14:11:56 2007 +0000
@@ -14,8 +14,8 @@
 #   packages are downloaded automatically.
 #
 #   This script is designed to run on any Unix system. It also runs
-#   partly on MSYS. It needs GNU make and GNU sed, so BSD users need
-#   the ports textproc/gsed and devel/gmake.
+#   partly on MSYS. It needs GNU make and GNU sed, so FreeBSD users
+#   need the ports textproc/gsed and devel/gmake.
 #
 #
 #   Usage:  ./build_mingw_cross_env.sh  [ action ]
@@ -127,10 +127,10 @@
 #---
 
 MAKE=gmake
-$MAKE --version || MAKE=make
+$MAKE --version >&2 || MAKE=make
 
 SED=gsed
-$SED --version || SED=sed
+$SED  --version >&2 || SED=sed
 
 
 #---