forked from len0rd/rockbox
refuse to continue if pwd contains space, since the rest of the script
doesn't act correctly then! git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13213 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
5a79536697
commit
ef1109ad93
1 changed files with 8 additions and 0 deletions
8
tools/configure
vendored
8
tools/configure
vendored
|
|
@ -549,6 +549,14 @@ fi
|
|||
# get our current directory
|
||||
pwd=`pwd`;
|
||||
|
||||
if { echo $pwd | grep " "; } then
|
||||
echo "You're running this script in a path that contains space. The build"
|
||||
echo "system is unfortunately not clever enough to deal with this. Please"
|
||||
echo "run the script from a different path, rename the path or fix the build"
|
||||
echo "system!"
|
||||
exit
|
||||
fi
|
||||
|
||||
if [ -z "$rootdir" ]; then
|
||||
##################################################################
|
||||
# Figure out where the source code root is!
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue