summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsetup9
1 files changed, 8 insertions, 1 deletions
diff --git a/setup b/setup
index fb06ba629..d018c9814 100755
--- a/setup
+++ b/setup
@@ -21,6 +21,13 @@ if [ "$(basename -- "$0")" = "setup" ]; then
exit 1
fi
+# Check if 'column' command is present
+COLUMN=`which column`
+if [ -z "$COLUMN" ]; then
+ # If it is not, use 'cat'
+ COLUMN=`which cat`
+fi
+
machine() {
local target=$1
local build_dir=$2
@@ -54,7 +61,7 @@ machine() {
if [ -z "$1" ]; then
echo Target machine must be specified. Use one of:
echo
- (echo qemuarm; machine) | sort
+ (echo qemuarm; machine) | sort | $COLUMN
elif [ "$1" = "qemuarm" ]; then
source openbmc-env
else