Skip to content

Commit

Permalink
Update yaml-cpp.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
devernay committed Sep 24, 2021
1 parent 3246839 commit 72ad3d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/jenkins/include/scripts/pkg/yaml-cpp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ YAMLCPP_TAR="yaml-cpp-${YAMLCPP_VERSION}.tar.gz"
if download_step; then
download_github jbeder yaml-cpp "${YAMLCPP_VERSION}" yaml-cpp- "${YAMLCPP_TAR}"
fi
if build_step && { force_build || { [ ! -s "$SDK_HOME/lib/pkgconfig/yaml-cpp.pc" ] || [ "$(pkg-config --modversion yaml-cpp)" != "$YAMLCPP_VERSION" ]; }; }; then
if build_step && { force_build || { { [ ! -s "$SDK_HOME/lib/pkgconfig/yaml-cpp.pc" ] && [ ! -s "$SDK_HOME/share/pkgconfig/yaml-cpp.pc" ]; } || [ "$(pkg-config --modversion yaml-cpp)" != "$YAMLCPP_VERSION" ]; }; }; then
start_build
untar "$SRC_PATH/$YAMLCPP_TAR"
pushd "yaml-cpp-yaml-cpp-${YAMLCPP_VERSION}"
Expand Down

0 comments on commit 72ad3d1

Please sign in to comment.