generate-defconfig: Fix typo in script

Should not call merge_config.sh with -n parameter, this will result
in an invalid defconfig.
This commit is contained in:
Mattias Walström
2025-01-22 15:05:48 +01:00
parent 4598585d4a
commit d83c333b2d
+1 -1
View File
@@ -74,7 +74,7 @@ check_file "$base" "Base config"
check_file "$changes" "Changes config"
TMPDIR=`mktemp -d`
$MERGE_CONFIG -O "$TMPDIR" -n "$base" "$changes"
$MERGE_CONFIG -O "$TMPDIR" "$base" "$changes"
O="$TMPDIR" make savedefconfig
mv "$TMPDIR"/defconfig "$output"
rm -r "$TMPDIR"