Thomas Heijligen has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/61525 )
Change subject: platform/pci.h: adapt NetBSD include path to pkg-config ......................................................................
platform/pci.h: adapt NetBSD include path to pkg-config
The pkg-config include path resolves the pciutils directory. So the include is only the pci.h file.
Change-Id: I69dc8184d1d012fb695770cbf6f7c64e5a024453 Signed-off-by: Thomas Heijligen thomas.heijligen@secunet.com --- M platform/pci.h 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/25/61525/1
diff --git a/platform/pci.h b/platform/pci.h index f63529b..93bc163 100644 --- a/platform/pci.h +++ b/platform/pci.h @@ -15,7 +15,7 @@ #define index shadow_workaround_index
#if defined (__NetBSD__) -#include <pciutils/pci.h> +#include <pci.h> #else #include <pci/pci.h> #endif