diff options
author | 2024-08-19 16:18:52 -0700 | |
---|---|---|
committer | 2024-08-21 13:15:49 -0700 | |
commit | 57af33927f8eee7e82e8174a6aae2f96a000d001 (patch) | |
tree | a5a3a7284d43104b91275c63057dff2e232d7e81 /bpf/bpf.go | |
parent | fed2be9f98eb4e040cc0fe2a633f2bbef2f57eb7 (diff) |
bpf.go: adjust for p/m/C change to location of bpf headers
Test: TreeHugger
Signed-off-by: Maciej Żenczykowski <maze@google.com>
Change-Id: Id08dba160d2296581d6b41ade3e464b9bfe74540
Diffstat (limited to 'bpf/bpf.go')
-rw-r--r-- | bpf/bpf.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bpf/bpf.go b/bpf/bpf.go index 644539426..73c8800d8 100644 --- a/bpf/bpf.go +++ b/bpf/bpf.go @@ -157,7 +157,7 @@ func (bpf *bpf) GenerateAndroidBuildActions(ctx android.ModuleContext) { // The architecture doesn't matter here, but asm/types.h is included by linux/types.h. "-isystem bionic/libc/kernel/uapi/asm-arm64", "-isystem bionic/libc/kernel/android/uapi", - "-I packages/modules/Connectivity/staticlibs/native/bpf_headers/include/bpf", + "-I packages/modules/Connectivity/bpf/headers/include", // TODO(b/149785767): only give access to specific file with AID_* constants "-I system/core/libcutils/include", "-I " + ctx.ModuleDir(), |