In OS X 10.6 diskutil returns an error for ".". Now pass the absolute path of the current working directory.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32922 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Pfeiffer 2009-09-03 16:25:23 +00:00
parent 5548f2b27f
commit 0651c859cf

2
configure vendored
View File

@ -411,7 +411,7 @@ fi
# check for case-sensitive filesystem if on darwin
if [ $buildPlatform = "darwin" ]; then
diskutil info . | grep -i "case-sensitive" > /dev/null
diskutil info $(pwd) | grep -i "case-sensitive" > /dev/null
if [ $? != 0 ]; then
echo "You need a case-sensitive file-system to build Haiku."
echo "Please see the following guide on how to set one up:"