From b12dced470a8e256425e35f97e830747c673802b Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Sat, 20 May 2023 17:56:11 +0100 Subject: build/cbutil: avoid frivilous use of subshells Signed-off-by: Leah Rowe --- resources/scripts/build/module/cbutils | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/resources/scripts/build/module/cbutils b/resources/scripts/build/module/cbutils index 487e4fd9..504f7e8a 100755 --- a/resources/scripts/build/module/cbutils +++ b/resources/scripts/build/module/cbutils @@ -2,7 +2,7 @@ # helper script: build various coreboot utilities # -# Copyright (C) 2014, 2015, 2016, 2020, 2021 Leah Rowe +# Copyright (C) 2014-2016,2020,2021,2023 Leah Rowe # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -64,10 +64,8 @@ buildutils() { return 1 fi for util in cbfstool ifdtool; do - ( - cd "coreboot/${cbtree}/util/${util}/" - make -j$(nproc) || return 1 - ) + make -j$(nproc) -BC "coreboot/${cbtree}/util/${util}/" \ + || return 1 done } -- cgit v1.2.1