forked from pool/velociraptor
Jeff Mahoney
ae02f616a5
* Add tcpsnoop plugin - Update to version 0.6.3~git19.640f7a1c: * Add tcpsnoop plugin OBS-URL: https://build.opensuse.org/package/show/security:sensor/velociraptor?expand=0&rev=13
25 lines
541 B
Diff
25 lines
541 B
Diff
From: Jeff Mahoney <jeffm@suse.com>
|
|
Subject: Makefile: add bpf rules to linux_bare
|
|
|
|
The standalone client needs to have the vql implementation for bpf too
|
|
|
|
Acked-by: Jeff Mahoney <jeffm@suse.com>
|
|
---
|
|
Makefile | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -84,8 +84,8 @@ endif
|
|
|
|
linux: $(BPF_MODULES)
|
|
$(GOFLAGS) go run make.go -v linux
|
|
-linux_bare:
|
|
- go run make.go -v linuxBare
|
|
+linux_bare: $(BPF_MODULES)
|
|
+ $(GOFLAGS) go run make.go -v linuxBare
|
|
|
|
freebsd:
|
|
go run make.go -v freebsd
|
|
|