mirror of
https://github.com/netdata/libbpf.git
synced 2026-03-28 04:09:06 +08:00
Non-latest kernel versions don't build kernel from sources, so module buliding fails, despite using `make prepare`. For now, just make sure no module is built by overwriting bpf_testmod/Makefile. Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
5 lines
95 B
Bash
Executable File
5 lines
95 B
Bash
Executable File
#!/bin/bash
|
|
|
|
printf "all:\n\nclean:\n" > bpf_testmod/Makefile
|
|
touch bpf_testmod/bpf_testmod.ko
|