aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/google/protobuf/compiler/command_line_interface.cc
diff options
context:
space:
mode:
authorGravatar Bo Yang <paulyang1211@gmail.com>2015-02-04 10:20:20 -0800
committerGravatar Bo Yang <paulyang1211@gmail.com>2015-02-04 10:20:20 -0800
commita1b351c55bee819fc69861b3d0d88dab7dce0c4f (patch)
treefeaaa5bb91aebb52113c290e1ce258d2a27844b1 /src/google/protobuf/compiler/command_line_interface.cc
parent5fa3956edef4648fa14da81958330b6df59cdb6d (diff)
Change flag for generating dependency file to "dependency_out". Delete
test-driver
Diffstat (limited to 'src/google/protobuf/compiler/command_line_interface.cc')
-rw-r--r--src/google/protobuf/compiler/command_line_interface.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/google/protobuf/compiler/command_line_interface.cc b/src/google/protobuf/compiler/command_line_interface.cc
index 1a182f73..4b28cf6b 100644
--- a/src/google/protobuf/compiler/command_line_interface.cc
+++ b/src/google/protobuf/compiler/command_line_interface.cc
@@ -1020,7 +1020,7 @@ CommandLineInterface::InterpretArgument(const string& name,
}
descriptor_set_name_ = value;
- } else if (name == "--dependency_manifest_out") {
+ } else if (name == "--dependency_out") {
if (!dependency_manifest_name_.empty()) {
cerr << name << " may only be passed once." << endl;
return PARSE_ARGUMENT_FAIL;
@@ -1230,7 +1230,7 @@ void CommandLineInterface::PrintHelpText() {
" include information about the original\n"
" location of each decl in the source file as\n"
" well as surrounding comments.\n"
-" --manifest_file=FILE Write a dependency output file in the format\n"
+" --dependency_out=FILE Write a dependency output file in the format\n"
" expected by make. This writes the transitive\n"
" set of input file paths to FILE\n"
" --error_format=FORMAT Set the format in which to print errors.\n"