summaryrefslogtreecommitdiffstats
path: root/process_configs.sh
diff options
context:
space:
mode:
authorThorsten Leemhuis <fedora@leemhuis.info>2022-03-24 16:03:02 +0100
committerThorsten Leemhuis <fedora@leemhuis.info>2022-03-24 16:03:02 +0100
commitfb1ea784e8985f10301ed1685dbdfbf6f28de7fd (patch)
tree51dfebbaa653d61d5546bcb97e6663cac9b30729 /process_configs.sh
parent59a135d996819ab4de8038c2b13c3dddbd30aa8e (diff)
parent55017c651490388db35458885b29e69739eb6b32 (diff)
downloadkernel-5.18.0-0.rc0.20220324gited4643521e6a.6.vanilla.1.fc34.tar.gz
kernel-5.18.0-0.rc0.20220324gited4643521e6a.6.vanilla.1.fc34.tar.xz
kernel-5.18.0-0.rc0.20220324gited4643521e6a.6.vanilla.1.fc34.zip
Diffstat (limited to 'process_configs.sh')
-rwxr-xr-xprocess_configs.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/process_configs.sh b/process_configs.sh
index 2ee4037ad..27372afc2 100755
--- a/process_configs.sh
+++ b/process_configs.sh
@@ -304,6 +304,10 @@ function process_configs()
count=0
for cfg in "$SCRIPT_DIR/${PACKAGE_NAME}${KVERREL}${SUBARCH}"*.config
do
+ if [ "$count" -eq 0 ]; then
+ # do the first one by itself so that tools are built
+ process_config "$cfg" "$count"
+ fi
process_config "$cfg" "$count" &
waitpids[${count}]=$!
((count++))