diff options
author | Dave Chapman <dave@dchapman.com> | 2009-07-20 17:30:33 +0000 |
---|---|---|
committer | Dave Chapman <dave@dchapman.com> | 2009-07-20 17:30:33 +0000 |
commit | 4c41a2d42897270d4103390f8056f7cc70dc52da (patch) | |
tree | 819a0a71328245ef2ef2a10a332c3c75fdc86d27 /tools | |
parent | c46669a230ccea798396a60f1fd78fc1156f2464 (diff) |
Add quotes around the name of any missing tools (patch, make etc) to help clarify the error message
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21983 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rw-r--r-- | tools/checkwps/checkwps.h | 1 | ||||
-rwxr-xr-x | tools/rockboxdev.sh | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/tools/checkwps/checkwps.h b/tools/checkwps/checkwps.h index 2ba8f5f59e..83ac8e8086 100644 --- a/tools/checkwps/checkwps.h +++ b/tools/checkwps/checkwps.h @@ -26,7 +26,6 @@ #include <stdbool.h> #include <fcntl.h> -/* subset of global_settings needed to build checkwps. */ struct user_settings { bool statusbar; int bg_color; /* background color native format */ diff --git a/tools/rockboxdev.sh b/tools/rockboxdev.sh index 4ceb4c6307..3257d524ec 100755 --- a/tools/rockboxdev.sh +++ b/tools/rockboxdev.sh @@ -95,8 +95,8 @@ getfile() { for t in $reqtools; do tool=`findtool $t` if test -z "$tool"; then - echo "ROCKBOXDEV: $t is required for this script to work." - echo "ROCKBOXDEV: Please install $t and re-run the script." + echo "ROCKBOXDEV: \"$t\" is required for this script to work." + echo "ROCKBOXDEV: Please install \"$t\" and re-run the script." exit fi done |