From 938243a49925c607b4d3d93a338f0b8a6adb246f Mon Sep 17 00:00:00 2001 From: Gavin Sherry Date: Wed, 15 Mar 2017 21:58:34 -0700 Subject: [PATCH] Fix typo in variable name (#274) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b59b04ec3..26801adac 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ OUTPUT ?= ./gens LANGUAGE ?= cpp # Choose grpc plugin -GPRCPLUGIN ?= /usr/local/bin/grpc_$(LANGUAGE)_plugin +GRPCPLUGIN ?= /usr/local/bin/grpc_$(LANGUAGE)_plugin # Choose the proto include directory. PROTOINCLUDE ?= /usr/local/include @@ -32,7 +32,7 @@ endif FLAGS+= --proto_path=.:$(PROTOINCLUDE) FLAGS+= --$(LANGUAGE)_out=$(OUTPUT) --grpc_out=$(OUTPUT) -FLAGS+= --plugin=protoc-gen-grpc=$(GPRCPLUGIN) +FLAGS+= --plugin=protoc-gen-grpc=$(GRPCPLUGIN) SUFFIX:= pb.cc