diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2019-10-30 11:35:55 +0100 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2021-02-06 18:55:54 +0000 |
commit | 372766f26b8d765d4a6cc58992febc957c9b4d66 (patch) | |
tree | 52827b989cc83a50c477ddd94de78498feccc099 /payloads/external | |
parent | d12f0301507ebb2e4acbdcd752817a4b6f9756af (diff) |
payloads/external/FILO: Pass Libpayloads path on the clean target
FILO's Makefile will check for libpayload and might not even `clean`
if it's not found.
Change-Id: If5f8f4ecce317e54cd4b5688553cc38220f6e6df
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/36461
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'payloads/external')
-rw-r--r-- | payloads/external/FILO/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/payloads/external/FILO/Makefile b/payloads/external/FILO/Makefile index 6175cfe62c..90895572a9 100644 --- a/payloads/external/FILO/Makefile +++ b/payloads/external/FILO/Makefile @@ -44,7 +44,7 @@ libpayload: checkout $(MAKE) && $(MAKE) DESTDIR=../external/FILO/filo/build install clean: - test -d filo && $(MAKE) -C filo clean || exit 0 + test -d filo && $(MAKE) -C filo clean LIBCONFIG_PATH=../../../libpayload || exit 0 distclean: rm -rf filo |