1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Dave Chapman 2009-07-20 17:30:33 +00:00
parent c46669a230
commit 4c41a2d428
2 changed files with 2 additions and 3 deletions

View file

@ -26,7 +26,6 @@
#include <stdbool.h> #include <stdbool.h>
#include <fcntl.h> #include <fcntl.h>
/* subset of global_settings needed to build checkwps. */
struct user_settings { struct user_settings {
bool statusbar; bool statusbar;
int bg_color; /* background color native format */ int bg_color; /* background color native format */

View file

@ -95,8 +95,8 @@ getfile() {
for t in $reqtools; do for t in $reqtools; do
tool=`findtool $t` tool=`findtool $t`
if test -z "$tool"; then if test -z "$tool"; then
echo "ROCKBOXDEV: $t is required for this script to work." echo "ROCKBOXDEV: \"$t\" is required for this script to work."
echo "ROCKBOXDEV: Please install $t and re-run the script." echo "ROCKBOXDEV: Please install \"$t\" and re-run the script."
exit exit
fi fi
done done