diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-04-05 17:37:57 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-04-05 17:38:41 +0200 |
| commit | 4dc1b3a296937b6e9b370a25edf74e6aa22e3aa1 (patch) | |
| tree | ac6d66c6ca057e0b6ce4f1720282b13781f756a4 /src | |
| parent | Merge #7791: Doc: change Precise to Trusty in gitian-building.md (diff) | |
| parent | Use relative paths instead of absolute paths (diff) | |
| download | discoin-4dc1b3a296937b6e9b370a25edf74e6aa22e3aa1.tar.xz discoin-4dc1b3a296937b6e9b370a25edf74e6aa22e3aa1.zip | |
Merge #7788: Use relative paths instead of absolute paths in protoc calls
0087f26 Use relative paths instead of absolute paths (Pavel JanÃk)
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 1e54512cb..d91e959cf 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -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 |