diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2011-11-05 22:30:56 +0100 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2011-11-06 18:06:28 +0100 |
commit | 4ffbe2dbe7bc8cc20cdca941dfc57390c88b594f (patch) | |
tree | 805c759992329cd13209494d50acb50c3b0c1a08 /util | |
parent | bbc523146cfe732eef2ed81fee73c93b1c8e3b34 (diff) |
buildgcc: Fix wrapper Makefile
buildgcc moved from building gdb by default (with opt-out) to
gdb being optional. Adapt Makefile so it works again
Change-Id: I663a8c70db4f7b5d07456fb67a223dbb2de2c133
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-on: http://review.coreboot.org/417
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'util')
-rw-r--r-- | util/crossgcc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/crossgcc/Makefile b/util/crossgcc/Makefile index 8fe9c54cd8..b63cc061a5 100644 --- a/util/crossgcc/Makefile +++ b/util/crossgcc/Makefile @@ -1,11 +1,11 @@ all: build build: - bash ./buildgcc + bash ./buildgcc -G .PHONY: build-without-gdb build-without-gdb: - bash ./buildgcc --skip-gdb + bash ./buildgcc clean: rm -rf xgcc |