From: Jan-Benedict G. <jb...@us...> - 2005-12-21 23:22:35
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4848 Modified Files: build_toolchain.sh Log Message: - Improve error message. Thanks to Maximilian Wilhelm for the hint. Index: build_toolchain.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/build_toolchain.sh,v retrieving revision 1.45 retrieving revision 1.46 diff -u -d -r1.45 -r1.46 --- build_toolchain.sh 19 Dec 2005 12:28:45 -0000 1.45 +++ build_toolchain.sh 21 Dec 2005 23:22:21 -0000 1.46 @@ -6,15 +6,15 @@ # Test if some paths are set and correct # if [ ! -d "${VAX_PATCHES_PATH}" ]; then - echo "\$VAX_PATCHES_PATH isn't set--please source vax_toolchain_config" >&2 + echo "\$VAX_PATCHES_PATH isn't set or doesn't point to a directory--maybe source vax_toolchain_config" >&2 exit 1 fi if [ ! -d "${BUILD_BASE_DIR}" ]; then - echo "\$BUILD_BASE_DIR isn't set--please source vax_toolchain_config" >&2 + echo "\$BUILD_BASE_DIR isn't set or doesn't point to a directory--maybe source vax_toolchain_config" >&2 exit 1 fi if [ ! -d "${UPSTREAM_SANDBOXES_PATH}" ]; then - echo "\$UPSTREAM_SANDBOXES_PATH isn't set--please source vax_toolchain_config" >&2 + echo "\$UPSTREAM_SANDBOXES_PATH isn't set or doesn't point to a directory--maybe source vax_toolchain_config" >&2 exit 1 fi |