summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/rockboxdev.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/rockboxdev.sh b/tools/rockboxdev.sh
index d9b5ecd524..ac21a4c524 100755
--- a/tools/rockboxdev.sh
+++ b/tools/rockboxdev.sh
@@ -30,7 +30,7 @@ else
30fi 30fi
31 31
32# This is the absolute path to where the script resides. 32# This is the absolute path to where the script resides.
33rockboxdevdir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 33rockboxdevdir="$( readlink -f "$( dirname "${BASH_SOURCE[0]}" )" )"
34 34
35if [ `uname -s` = "Darwin" ]; then 35if [ `uname -s` = "Darwin" ]; then
36 parallel=`sysctl -n hw.physicalcpu` 36 parallel=`sysctl -n hw.physicalcpu`
@@ -707,6 +707,10 @@ if [ -n "$missingtools" ]; then
707 exit 1 707 exit 1
708fi 708fi
709 709
710dlwhere=$(readlink -f "$dlwhere")
711prefix=$(readlink -f "$prefix")
712builddir=$(readlink -f "$builddir")
713
710echo "Download directory : $dlwhere (set RBDEV_DOWNLOAD or use --dlwhere= to change)" 714echo "Download directory : $dlwhere (set RBDEV_DOWNLOAD or use --dlwhere= to change)"
711echo "Install prefix : $prefix (set RBDEV_PREFIX or use --prefix= to change)" 715echo "Install prefix : $prefix (set RBDEV_PREFIX or use --prefix= to change)"
712echo "Build dir : $builddir (set RBDEV_BUILD or use --builddir= to change)" 716echo "Build dir : $builddir (set RBDEV_BUILD or use --builddir= to change)"