summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWolfram Sang <wsa@the-dreams.de>2021-01-29 18:46:37 +0100
committerSolomon Peachy <pizza@shaftnet.org>2021-02-05 17:29:05 +0000
commite23d45536edc7bd19ac606989393f8e3964e1c33 (patch)
tree349002c2e07ad0380abe8c0e61b0f4b57a9e6db7
parent165d926a63d37a83c82606981021d1d77a1474b8 (diff)
downloadrockbox-e23d45536edc7bd19ac606989393f8e3964e1c33.tar.gz
rockbox-e23d45536edc7bd19ac606989393f8e3964e1c33.zip
rockboxdev: fix summary output of options
'--download' is now named '--dlwhere' and 'target' was missing the '=' Change-Id: I5f295fac8ddfb9139b00e9b6b7b5dfa625ac05cf
-rwxr-xr-xtools/rockboxdev.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/rockboxdev.sh b/tools/rockboxdev.sh
index 561ceb0205..0c4b189410 100755
--- a/tools/rockboxdev.sh
+++ b/tools/rockboxdev.sh
@@ -707,12 +707,12 @@ if [ -n "$missingtools" ]; then
707 exit 1 707 exit 1
708fi 708fi
709 709
710echo "Download directory : $dlwhere (set RBDEV_DOWNLOAD or use --download= to change)" 710echo "Download directory : $dlwhere (set RBDEV_DOWNLOAD or use --dlwhere= to change)"
711echo "Install prefix : $prefix (set RBDEV_PREFIX or use --prefix= to change)" 711echo "Install prefix : $prefix (set RBDEV_PREFIX or use --prefix= to change)"
712echo "Build dir : $builddir (set RBDEV_BUILD or use --builddir= to change)" 712echo "Build dir : $builddir (set RBDEV_BUILD or use --builddir= to change)"
713echo "Make options : $MAKEFLAGS (set MAKEFLAGS or use --makeflags= to change)" 713echo "Make options : $MAKEFLAGS (set MAKEFLAGS or use --makeflags= to change)"
714echo "Restart step : $RBDEV_RESTART (set RBDEV_RESTART or use --restart= to change)" 714echo "Restart step : $RBDEV_RESTART (set RBDEV_RESTART or use --restart= to change)"
715echo "Target arch : $RBDEV_TARGET (set RBDEV_TARGET or use --target to change)" 715echo "Target arch : $RBDEV_TARGET (set RBDEV_TARGET or use --target= to change)"
716 716
717# Verify download directory 717# Verify download directory
718if test -d "$dlwhere"; then 718if test -d "$dlwhere"; then