aboutsummaryrefslogtreecommitdiff
path: root/abe.sh
diff options
context:
space:
mode:
authorMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2016-03-28 13:23:10 +0000
committerLinaro Code Review <review@review.linaro.org>2016-03-28 13:23:10 +0000
commit161688737e8f66bf80a7cc0499906ca84840b925 (patch)
treefc0ab2cfdacd7cfa8d1e560e415a85799e7205e2 /abe.sh
parent322159ae57409a81b2c8940e4e04ef96a7f16ad1 (diff)
parentd91b5e435be0049b23c5bc2f5f58f02d065ee8d9 (diff)
Merge "Add dejagnu version handling on the command line."
Diffstat (limited to 'abe.sh')
-rwxr-xr-xabe.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/abe.sh b/abe.sh
index 13470503..1f97e0a8 100755
--- a/abe.sh
+++ b/abe.sh
@@ -40,7 +40,7 @@ usage()
[--snapshots <path>] [--tarball] [--tarbin] [--tarsrc] [--rpm]
[--target {<target_triple>|''}] [--timeout <timeout_value>]
[--usage]
- [{binutils|gcc|gmp|mpfr|mpc|eglibc|glibc|newlib}
+ [{binutils|dejagnu|gcc|gmp|mpfr|mpc|eglibc|glibc|newlib}
=<id|snapshot|url>]]
EOF
@@ -335,7 +335,7 @@ OPTIONS
--usage Display synopsis information.
- [{binutils|gcc|gmp|mpfr|mpc|eglibc|glibc|newlib}=<id|snapshot|url>]
+ [{binutils|dejagnu|gcc|gmp|mpfr|mpc|eglibc|glibc|newlib}=<id|snapshot|url>]
This option specifies a particular version of a package
that might differ from the default version in the
@@ -1093,6 +1093,9 @@ while test $# -gt 0; do
b*|binutils)
binutils_version="`echo ${value}`"
;;
+ dejagnu)
+ dejagnu_version="${value}"
+ ;;
gc*|gcc)
gcc_version="${value}"
;;