From fb9f4208ed371afe23307f9b6cb9ada618bada9b Mon Sep 17 00:00:00 2001 From: John Ericson Date: Mon, 15 Apr 2024 16:57:07 -0400 Subject: [PATCH] Don't include `linux/` in `#include` The linux dirs are conditionally added to the `-I` path. --- src/libstore/unix/build/local-derivation-goal.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstore/unix/build/local-derivation-goal.cc b/src/libstore/unix/build/local-derivation-goal.cc index 2d691143c..aad5173e7 100644 --- a/src/libstore/unix/build/local-derivation-goal.cc +++ b/src/libstore/unix/build/local-derivation-goal.cc @@ -37,7 +37,7 @@ /* Includes required for chroot support. */ #if __linux__ -# include "linux/fchmodat2-compat.hh" +# include "fchmodat2-compat.hh" # include # include # include