Index: tools/autotool.py
===================================================================
--- tools/autotool.py	(revision 868d75cb57128586445ac07403416215301724f8)
+++ tools/autotool.py	(revision 12bdbcc6c84d5d9ed87e608479b389e608f2cc74)
@@ -53,4 +53,8 @@
 PACKAGE_CLANG = "reasonably recent version of clang needs to be installed"
 
+TOOLCHAIN_FAIL = [
+	"Compiler toolchain for target is not installed, or CROSS_PREFIX ",
+	"environment variable is not set correctly. Use tools/toolchain.sh",
+	"to (re)build the cross-compiler toolchain."]
 COMPILER_FAIL = "The compiler is probably not capable to compile HelenOS."
 COMPILER_WARNING = "The compilation of HelenOS might fail."
@@ -596,10 +600,10 @@
 				check_path = "%s/%s/%s" % (cross_helenos_prefix, platform, target)
 				if not os.path.exists(check_path):
-					print_error(["Toolchain for target is not installed, or CROSS_PREFIX is not set correctly."])
+					print_error(TOOLCHAIN_FAIL)
 				path = "%s/%s/bin" % (cross_helenos_prefix, platform)
 			else:
 				check_path = "%s/%s/%s" % (cross_prefix, platform, target)
 				if not os.path.exists(check_path):
-					print_error(["Toolchain for target is not installed, or CROSS_PREFIX is not set correctly."])
+					print_error(TOOLCHAIN_FAIL)
 				path = "%s/%s/bin" % (cross_prefix, platform)
 
