diff options
author | Pavel Janík <Pavel@Janik.cz> | 2016-04-02 16:32:42 +0200 |
---|---|---|
committer | Pavel Janík <Pavel@Janik.cz> | 2016-04-04 19:56:59 +0200 |
commit | 0087f2684891d9f208a1d91758e662d0538d54ce (patch) | |
tree | 2c37608ede1bfd01b33a56400ed25b0c243f8fd6 /src | |
parent | 30c2dd8d0598afac9319d3a813a89a682b9c0d34 (diff) |
Use relative paths instead of absolute paths
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 1e54512cbd..d91e959cff 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 |