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:
parent
c46669a230
commit
4c41a2d428
2 changed files with 2 additions and 3 deletions
|
|
@ -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 */
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue