Skip to content

Commit

Permalink
fix: split EINAT_BPF_CFLAGS args
Browse files Browse the repository at this point in the history
  • Loading branch information
EHfive committed Nov 18, 2024
1 parent a0e06c9 commit cb95014
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ fn einat_obj_build() {
cmd.args(c_args());

if let Some(cflags) = option_env!("EINAT_BPF_CFLAGS") {
cmd.arg(cflags);
cmd.args(cflags.split_ascii_whitespace());
}

// Specify environment variable LIBBPF_NO_PKG_CONFIG=1 to disable pkg-config lookup.
Expand Down

0 comments on commit cb95014

Please sign in to comment.