diff options
author | Patrick Georgi <pgeorgi@chromium.org> | 2015-05-05 22:24:10 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-05-05 22:49:11 +0200 |
commit | f4f028790a492120ce9e7b3292a17664a8c7613d (patch) | |
tree | af681abd28200f979e179b669bbcd6961d0f2907 /Makefile.inc | |
parent | b9cd5ece14f0aeaa713299d114fcdca46276acf9 (diff) |
3rdparty: Move to blobs
To move 3rdparty to 3rdparty/blobs (ie. below itself
from git's broken perspective), we need to work around
it - since some git implementations don't like the direct
approach.
Change-Id: I1fc84bbb37e7c8c91ab14703d609a739b5ca073c
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Reviewed-on: http://review.coreboot.org/10108
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'Makefile.inc')
-rw-r--r-- | Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.inc b/Makefile.inc index 64039771fc..7263315689 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -131,9 +131,9 @@ endif # try to fetch non-optional submodules if the source is under git forgetthis:=$(if $(GIT),$(shell git submodule update --init)) ifeq ($(CONFIG_USE_BLOBS),y) -# this is necessary because 3rdparty is update=none, and so is ignored +# this is necessary because blobs is update=none, and so is ignored # unless explicitly requested and enabled through --checkout -forgetthis:=$(if $(GIT),$(shell git submodule update --init --checkout 3rdparty)) +forgetthis:=$(if $(GIT),$(shell git submodule update --init --checkout blobs)) endif ramstage-c-deps:=$$(OPTION_TABLE_H) |