When we build the defconfigs, we already check they are correct, so
there is no need to run the correctness check explicitly.
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Cc: Romain Naour <romain.naour@gmail.com>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Cc: Arnout Vandecappelle <arnout@mind.be>
Acked-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
esac
for cfg in "${defconfigs[@]}"; do
- printf '%s_check: { extends: .defconfig_check }\n' "${cfg}"
if ${build_defconfigs}; then
printf '%s: { extends: .defconfig }\n' "${cfg}"
+ else
+ printf '%s_check: { extends: .defconfig_check }\n' "${cfg}"
fi
done
}