Browse Source

Merge #7788: Use relative paths instead of absolute paths in protoc calls

0087f26 Use relative paths instead of absolute paths (Pavel Janík)
0.13
Wladimir J. van der Laan 8 years ago
parent
commit
4dc1b3a296
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 2
      src/Makefile.am

2
src/Makefile.am

@ -479,7 +479,7 @@ endif @@ -479,7 +479,7 @@ endif
%.pb.cc %.pb.h: %.proto
@test -f $(PROTOC)
$(AM_V_GEN) $(PROTOC) --cpp_out=$(@D) --proto_path=$(abspath $(<D) $<)
$(AM_V_GEN) $(PROTOC) --cpp_out=$(@D) --proto_path=$(<D) $<
if ENABLE_TESTS
include Makefile.test.include

Loading…
Cancel
Save