summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorzbao <fishbaozi@gmail.com>2015-08-11 02:43:46 -0400
committerZheng Bao <zheng.bao@amd.com>2015-08-13 10:06:11 +0200
commit433fa5735c38c98629afd9be6dbf0934f380d370 (patch)
tree1ded41ba857120b7350679c2d556ca436a7fcf8f /util
parentaa7dcef49427bde74ae4ddb48f6ed9823661a4a5 (diff)
downloadcoreboot-433fa5735c38c98629afd9be6dbf0934f380d370.tar.xz
buildgcc: Fix the options check
1. Add -P|--package to build iasl 2. Remove -G|--skip-gdb, which was to skip gdb. 3. Add -S|--scripting to build gdb 4. Remove -C|--clang, which was to build clang. All these changes are aligned with the options parsing below. The help text is correct. Change-Id: I897ea5e8ab002086e45bf05ff33230815b246057 Signed-off-by: Zheng Bao <zheng.bao@amd.com> Signed-off-by: Zheng Bao <fishbaozi@gmail.com> Reviewed-on: http://review.coreboot.org/11158 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'util')
-rwxr-xr-xutil/crossgcc/buildgcc4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc
index eaeafcf136..bd0d8ef11d 100755
--- a/util/crossgcc/buildgcc
+++ b/util/crossgcc/buildgcc
@@ -499,11 +499,11 @@ getopt - > /dev/null 2>/dev/null || gcc -o getopt getopt.c
getoptbrand="$(getopt -V | sed -e '1!d' -e 's,^\(......\).*,\1,')"
if [ "${getoptbrand}" = "getopt" ]; then
# Detected GNU getopt that supports long options.
- args=$(getopt -l version,help,clean,directory:,platform:,jobs:,destdir:,savetemps,skip-gdb,ccache,clang Vhcd:p:j:D:tGyC -- "$@")
+ args=$(getopt -l version,help,clean,directory:,platform:,package:,jobs:,destdir:,savetemps,scripting,ccache Vhcd:p:P:j:D:tSy -- "$@")
eval set "$args"
else
# Detected non-GNU getopt
- args=$(getopt Vhcd:p:j:D:tGyC $*)
+ args=$(getopt Vhcd:p:P:j:D:tSy $*)
set -- $args
fi