mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-08-03 07:22:51 +02:00
12 lines
302 B
Bash
Executable file
12 lines
302 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Copyright The OpenTelemetry Authors
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
set -ex
|
|
|
|
PKG_CONFIG_PATH="/usr/local/lib64/pkgconfig:${PKG_CONFIG_PATH:-}"
|
|
|
|
for library in api common logs metrics resources trace version; do
|
|
pkg-config --validate opentelemetry_${library} --print-errors
|
|
done
|