mirror of
https://github.com/netdata/libbpf.git
synced 2026-03-30 05:09:06 +08:00
Selftests makefile deletes local bpf_testmod.ko, so that invalidates current approach of faking bpf_testmod.ko "generation". Instead, generate a fake Makefile that will create an empty bpf_testmod/bpf_testmod.ko. Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
4 lines
86 B
Bash
Executable File
4 lines
86 B
Bash
Executable File
#!/bin/bash
|
|
|
|
printf "all:\n\ttouch bpf_testmod.ko\n\nclean:\n" > bpf_testmod/Makefile
|