diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2023-06-15 19:09:51 +0200 |
---|---|---|
committer | Felix Singer <service+coreboot-gerrit@felixsinger.de> | 2023-06-15 21:19:08 +0000 |
commit | d985e9dbd25ddb737223bffc2b7fd9c49be1b968 (patch) | |
tree | b1a89f5a4210b7a50ee6cb9ed45323bebc7ef79c /src/security/intel | |
parent | 9afa18f0e936e07c51298c0376c23f3af8aaa65e (diff) |
security/intel/cbnt/Makefile: Fix invalid char '*'
It seems that using a wildcard (*) in the import path is not supported
in the context of the Makefile.
This to fix this error:
malformed import path "cmd/cbnt-prov/*.go": invalid char '*'
Change-Id: I953e06f1ff70a2b61bc5f505f7df9936b7f9b55b
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/75638
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Diffstat (limited to 'src/security/intel')
-rw-r--r-- | src/security/intel/cbnt/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/security/intel/cbnt/Makefile.inc b/src/security/intel/cbnt/Makefile.inc index 4959f018e0..4c585b8664 100644 --- a/src/security/intel/cbnt/Makefile.inc +++ b/src/security/intel/cbnt/Makefile.inc @@ -34,7 +34,7 @@ ifneq ($(CONFIG_INTEL_CBNT_PROV_EXTERNAL_BIN),y) $(CBNT_PROV): printf " CBNT_PROV building tool\n" cd 3rdparty/intel-sec-tools; \ - GO111MODULE=on go build -o $(abspath $@) cmd/cbnt-prov/*.go + GO111MODULE=on go build -o $(abspath $@) cmd/cbnt-prov/main.go cmd/cbnt-prov/cmd.go else $(CBNT_PROV): $(call strip_quotes, $(CONFIG_INTEL_CBNT_PROV_EXTERNAL_BIN_PATH)) cp $< $@ |