From 0f4374169e10ee6f99a46c27b3ae752c4201e216 Mon Sep 17 00:00:00 2001 From: Michael Crosby Date: Thu, 7 Nov 2019 14:36:54 -0500 Subject: [PATCH] Add proto path /usr/include to Protobuild This fixes proto compiles on alpine based systems. Signed-off-by: Michael Crosby --- Protobuild.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Protobuild.toml b/Protobuild.toml index 990ff83cf..d88fcd68d 100644 --- a/Protobuild.toml +++ b/Protobuild.toml @@ -17,7 +17,7 @@ plugins = ["grpc", "fieldpath"] # Paths that will be added untouched to the end of the includes. We use # `/usr/local/include` to pickup the common install location of protobuf. # This is the default. - after = ["/usr/local/include"] + after = ["/usr/local/include", "/usr/include"] # This section maps protobuf imports to Go packages. These will become # `-M` directives in the call to the go protobuf generator.