rockboxdev: fix summary output of options

'--download' is now named '--dlwhere' and 'target' was missing the '='

Change-Id: I5f295fac8ddfb9139b00e9b6b7b5dfa625ac05cf
This commit is contained in:
Wolfram Sang 2021-01-29 18:46:37 +01:00 committed by Solomon Peachy
parent 165d926a63
commit e23d45536e

View file

@ -707,12 +707,12 @@ if [ -n "$missingtools" ]; then
exit 1
fi
echo "Download directory : $dlwhere (set RBDEV_DOWNLOAD or use --download= to change)"
echo "Download directory : $dlwhere (set RBDEV_DOWNLOAD or use --dlwhere= to change)"
echo "Install prefix : $prefix (set RBDEV_PREFIX or use --prefix= to change)"
echo "Build dir : $builddir (set RBDEV_BUILD or use --builddir= to change)"
echo "Make options : $MAKEFLAGS (set MAKEFLAGS or use --makeflags= to change)"
echo "Restart step : $RBDEV_RESTART (set RBDEV_RESTART or use --restart= to change)"
echo "Target arch : $RBDEV_TARGET (set RBDEV_TARGET or use --target to change)"
echo "Target arch : $RBDEV_TARGET (set RBDEV_TARGET or use --target= to change)"
# Verify download directory
if test -d "$dlwhere"; then