]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
rec: fix cxx include dir 15154/head
authorOtto Moerbeek <otto.moerbeek@open-xchange.com>
Fri, 14 Feb 2025 08:23:23 +0000 (09:23 +0100)
committerOtto Moerbeek <otto.moerbeek@open-xchange.com>
Fri, 14 Feb 2025 08:23:23 +0000 (09:23 +0100)
pdns/recursordist/rec-rust-lib/rust/build.rs

index c9a07d3ae04cad08a31eec3ec094fa329c554c09..b06c900de4f47566ff008f6657e8d41cd3f76e56 100644 (file)
@@ -4,7 +4,7 @@ fn main() {
         // .file("src/source.cc") Code callable from Rust is in ../cxxsupport.cc
         .flag_if_supported("-std=c++17")
         .flag("-Isrc")
-        .flag("-I../../..")
+        .flag("-I../..")
         .compile("settings");
 
     // lib.rs is generated and taken care of by parent Makefile