summaryrefslogtreecommitdiffstats
path: root/process_configs.sh
diff options
context:
space:
mode:
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++))