mirror of
https://github.com/kernelkit/infix.git
synced 2026-08-06 15:43:02 +02:00
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:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user