diff options
author | 2025-02-25 04:04:46 -0500 | |
---|---|---|
committer | 2025-02-25 04:04:46 -0500 | |
commit | 230804a89319a76c6e653caadc98a870877548cc (patch) | |
tree | 27113d25cebb6a5c868e7c35a29809921223f86f /scripts/package/install-extmod-build | |
parent | RDMA/hfi1: Remove unused one_qsfp_write (diff) | |
parent | net/mlx5: Change POOL_NEXT_SIZE define value and make it global (diff) | |
download | wireguard-linux-230804a89319a76c6e653caadc98a870877548cc.tar.xz wireguard-linux-230804a89319a76c6e653caadc98a870877548cc.zip |
Merge branch 'mlx5-next' into wip/leon-for-next
This is merge of shared branch between RDMA and net-next trees.
* mlx5-next: (550 commits)
net/mlx5: Change POOL_NEXT_SIZE define value and make it global
net/mlx5: Add new health syndrome error and crr bit offset
Linux 6.14-rc3
...
Signed-off-by: Leon Romanovsky <leon@kernel.org>
Diffstat (limited to '')
-rwxr-xr-x | scripts/package/install-extmod-build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/package/install-extmod-build b/scripts/package/install-extmod-build index bb6e23c1174e..2966473b4660 100755 --- a/scripts/package/install-extmod-build +++ b/scripts/package/install-extmod-build @@ -62,8 +62,8 @@ if [ "${CC}" != "${HOSTCC}" ]; then # # Clear VPATH and srcroot because the source files reside in the output # directory. - # shellcheck disable=SC2016 # $(MAKE), $(CC), and $(build) will be expanded by Make - "${MAKE}" run-command KBUILD_RUN_COMMAND='+$(MAKE) HOSTCC=$(CC) VPATH= srcroot=. $(build)='"${destdir}"/scripts + # shellcheck disable=SC2016 # $(MAKE) and $(build) will be expanded by Make + "${MAKE}" run-command KBUILD_RUN_COMMAND='+$(MAKE) HOSTCC='"${CC}"' VPATH= srcroot=. $(build)='"${destdir}"/scripts rm -f "${destdir}/scripts/Kbuild" fi |