Skip to content

Commit

Permalink
kernel_patch_verify: kmake* allow word splitting
Browse files Browse the repository at this point in the history
kmake takes in variables such as "Image dtbs" that need to be word
split. Allow the same.

Fixes: eeac60b kernel_patch_verify: quote damn near everything

Signed-off-by: Nishanth Menon <nm@ti.com>
  • Loading branch information
nmenon committed Apr 23, 2024
1 parent d2a511e commit a64239e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kernel_patch_verify
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ if [ -z "$KP_TARGETS" ]; then
fi

kmake_single() {
make "$KM_A" "$KP_PARAMS" "$KM_C" "$KM_L" -j1 "$@"
make "$KM_A" "$KP_PARAMS" "$KM_C" "$KM_L" -j1 $@
}

kmake() {
make "$KM_A" "$KP_PARAMS" "$KM_C" "$KM_L" -j"$KM_CPUS" "$@"
make "$KM_A" "$KP_PARAMS" "$KM_C" "$KM_L" -j"$KM_CPUS" $@
}

###################
Expand Down

0 comments on commit a64239e

Please sign in to comment.