Skip to content

Commit

Permalink
Merge pull request grpc#6707 from murgatroid99/makefile_warning_wording
Browse files Browse the repository at this point in the history
Improve wording of protobuf warning in Makefile
  • Loading branch information
jtattermusch committed Jun 2, 2016
2 parents 6eb2380 + 7356326 commit d06b482
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 12 deletions.
14 changes: 8 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2290,17 +2290,19 @@ ifeq ($(INSTALL_OK),true)
@echo "Your system looks ready to go."
@echo
else
@echo "We couldn't find protoc 3.0.0+ installed on your system. While this"
@echo "won't prevent grpc from working, you won't be able to compile"
@echo "and run any meaningful code with it."
@echo "Warning: it looks like protoc 3.0.0+ isn't installed on your system,"
@echo "which means that you won't be able to compile .proto files for use"
@echo "with gRPC."
@echo
@echo "If you are just using pre-compiled protocol buffers, or you otherwise"
@echo "have no need to compile .proto files, you can ignore this."
@echo
@echo "Please download and install protobuf 3.0.0+ from:"
@echo "If you do need protobuf for some reason, you can download and install"
@echo "it from:"
@echo
@echo " https://github.com/google/protobuf/releases"
@echo
@echo "Once you've done so, or if you think this message is in error,"
@echo "you can re-run this check by doing:"
@echo "Once you've done so, you can re-run this check by doing:"
@echo
@echo " make verify-install"
endif
Expand Down
14 changes: 8 additions & 6 deletions templates/Makefile.template
Original file line number Diff line number Diff line change
Expand Up @@ -1431,17 +1431,19 @@
@echo "Your system looks ready to go."
@echo
else
@echo "We couldn't find protoc 3.0.0+ installed on your system. While this"
@echo "won't prevent grpc from working, you won't be able to compile"
@echo "and run any meaningful code with it."
@echo "Warning: it looks like protoc 3.0.0+ isn't installed on your system,"
@echo "which means that you won't be able to compile .proto files for use"
@echo "with gRPC."
@echo
@echo "If you are just using pre-compiled protocol buffers, or you otherwise"
@echo "have no need to compile .proto files, you can ignore this."
@echo
@echo "Please download and install protobuf 3.0.0+ from:"
@echo "If you do need protobuf for some reason, you can download and install"
@echo "it from:"
@echo
@echo " https://github.com/google/protobuf/releases"
@echo
@echo "Once you've done so, or if you think this message is in error,"
@echo "you can re-run this check by doing:"
@echo "Once you've done so, you can re-run this check by doing:"
@echo
@echo " make verify-install"
endif
Expand Down

0 comments on commit d06b482

Please sign in to comment.