Skip to content

Commit

Permalink
Fix opentelemetry-proto file exists check (open-telemetry#1824)
Browse files Browse the repository at this point in the history
  • Loading branch information
eguzki authored and yxue committed Dec 5, 2022
1 parent 72fae39 commit bf9b15d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Increment the:
<<<<<<< HEAD
<<<<<<< HEAD
<<<<<<< HEAD
<<<<<<< HEAD
## [1.8.1] 2022-12-04

* [ETW Exporter] Tail based sampling support [#1780](https://github.com/open-telemetry/opentelemetry-cpp/pull/1780)
Expand Down Expand Up @@ -293,6 +294,8 @@ update the semantic convention in instrumentation library is needed.
>>>>>>> 5407b9d7 ([Logs SDK] LogProcessor, LogExporter changes (#1727))
=======
>>>>>>> b18a7edd (Prepare v1.8.0 release (#1813))
=======
>>>>>>> 521db474 (Fix opentelemetry-proto file exists check (#1824))
* [TRACE SDK] Add trace sdk builders (#1393)
[#1471](https://github.com/open-telemetry/opentelemetry-cpp/pull/1471)
* [EXAMPLE] Fix memory ownership of InMemorySpanExporter (#1473)
Expand All @@ -319,6 +322,10 @@ update the semantic convention in instrumentation library is needed.
=======
=======
=======
=======
* [BUILD] Fix opentelemetry-proto file exists check [#1824](https://github.com/open-telemetry/opentelemetry-cpp/pull/1824)

>>>>>>> 82d8cb49 (Fix opentelemetry-proto file exists check (#1824))
## [1.8.0] 2022-11-27

* [DOC] Update Metrics status in README.md [#1722](https://github.com/open-telemetry/opentelemetry-cpp/pull/1722)
Expand Down
4 changes: 4 additions & 0 deletions cmake/opentelemetry-proto.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,15 @@
#

if(OTELCPP_PROTO_PATH)
<<<<<<< HEAD
<<<<<<< HEAD
if(NOT EXISTS "${OTELCPP_PROTO_PATH}/opentelemetry/proto/common/v1/common.proto")
=======
if(NOT EXISTS(${OTELCPP_PROTO_PATH}/opentelemetry/proto/common/v1/common.proto))
>>>>>>> f2b384de ([Build] Bring your own dependency: opentelemetry-proto (#1730))
=======
if(NOT EXISTS "${OTELCPP_PROTO_PATH}/opentelemetry/proto/common/v1/common.proto")
>>>>>>> 521db474 (Fix opentelemetry-proto file exists check (#1824))
message(FATAL_ERROR "OTELCPP_PROTO_PATH does not point to a opentelemetry-proto repository")
endif()
message(STATUS "opentelemetry-proto dependency satisfied by: external path")
Expand Down

0 comments on commit bf9b15d

Please sign in to comment.