build/cbutil: avoid frivilous use of subshells

Signed-off-by: Leah Rowe <leah@libreboot.org>
fsdg20230625
Leah Rowe 2023-05-20 17:56:11 +01:00
parent 355a45b435
commit b12dced470
1 changed files with 3 additions and 5 deletions

View File

@ -2,7 +2,7 @@
# helper script: build various coreboot utilities
#
# Copyright (C) 2014, 2015, 2016, 2020, 2021 Leah Rowe <info@minifree.org>
# Copyright (C) 2014-2016,2020,2021,2023 Leah Rowe <info@minifree.org>
#
# 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
}