aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorkenton@google.com <kenton@google.com@630680e5-0e50-0410-840e-4b1c322b438d>2009-09-11 22:08:40 +0000
committerkenton@google.com <kenton@google.com@630680e5-0e50-0410-840e-4b1c322b438d>2009-09-11 22:08:40 +0000
commit721995d00aedd42856653f1135c41f9736501590 (patch)
tree279bd7473dc9404c65fa49c3b99acd5cb6a3354a /src
parent7fb9ae9df3adcf49a4c02072739987c53dcce2df (diff)
downloadprotobuf-721995d00aedd42856653f1135c41f9736501590.tar.gz
protobuf-721995d00aedd42856653f1135c41f9736501590.tar.bz2
protobuf-721995d00aedd42856653f1135c41f9736501590.zip
Fix cross-compiling when building in a dedicated build directory. Fix pointed out by Pierre Kestener.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index f009838e..2b1d6da1 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -234,7 +234,7 @@ BUILT_SOURCES = $(protoc_outputs)
if USE_EXTERNAL_PROTOC
unittest_proto_middleman: $(protoc_inputs)
- $(PROTOC) -I$(srcdir) --cpp_out=. $(protoc_inputs)
+ $(PROTOC) -I$(srcdir) --cpp_out=. $^
touch unittest_proto_middleman
else