Skip to content

Commit a64239e

Browse files
committed
kernel_patch_verify: kmake* allow word splitting
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 <[email protected]>
1 parent d2a511e commit a64239e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kernel_patch_verify

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,11 @@ if [ -z "$KP_TARGETS" ]; then
7171
fi
7272

7373
kmake_single() {
74-
make "$KM_A" "$KP_PARAMS" "$KM_C" "$KM_L" -j1 "$@"
74+
make "$KM_A" "$KP_PARAMS" "$KM_C" "$KM_L" -j1 $@
7575
}
7676

7777
kmake() {
78-
make "$KM_A" "$KP_PARAMS" "$KM_C" "$KM_L" -j"$KM_CPUS" "$@"
78+
make "$KM_A" "$KP_PARAMS" "$KM_C" "$KM_L" -j"$KM_CPUS" $@
7979
}
8080

8181
###################

0 commit comments

Comments
 (0)