Skip to content

Commit

Permalink
itk: fix typo in message
Browse files Browse the repository at this point in the history
  • Loading branch information
valgur committed Aug 21, 2024
1 parent 6da8790 commit 1499c54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/itk/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def requirements(self):
def validate(self):
if self.options.shared and not self.dependencies["hdf5"].options.shared:
raise ConanInvalidConfiguration("When building a shared itk, hdf5 needs to be shared too (or not linked to by the consumer).\n"
"This is because H5::DataSpace::ALL might get initialized twice, which will cause a H5::DataSpaceIException to be thrown).")
"This is because H5::DataSpace::ALL might get initialized twice, which will cause a H5::DataSpaceIException to be thrown.")
if self.settings.compiler.cppstd:
check_min_cppstd(self, self._min_cppstd)
check_min_vs(self, 190)
Expand Down

0 comments on commit 1499c54

Please sign in to comment.