Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in GCSSDK superbuild #1665

Merged
merged 1 commit into from
Jun 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@

* Added functions `Attribute::{set,get}_fill_value` to get/set default fill values

# TileDB v2.0.4 Release Notes

## Improvements

* Fix typo in GCS cmake file for superbuild [#1665](https://github.com/TileDB-Inc/TileDB/pull/1665)

# TileDB v2.0.3 Release Notes

## Improvements
Expand Down
2 changes: 1 addition & 1 deletion cmake/Modules/FindGCSSDK_EP.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ set(GCSSDK_DIR "${TILEDB_EP_INSTALL_PREFIX}")
# First check for a static version in the EP prefix.
# The storage client is installed as the cmake package storage_client
# TODO: This should be replaced with proper find_package as google installs cmake targets for the subprojects
if (NOT TILEDB_FORCE_ALL_DEPS OR TILEDB_CAPNP_EP_BUILT)
if (NOT TILEDB_FORCE_ALL_DEPS OR TILEDB_GCSSDK_EP_BUILT)
find_package(storage_client
PATHS ${TILEDB_EP_INSTALL_PREFIX}
${TILEDB_DEPS_NO_DEFAULT_PATH}
Expand Down