Fix bufr package typo (libufr->libbufr) (#35740)

This commit is contained in:
Alex Richert 2023-02-28 15:56:30 -08:00 committed by GitHub
parent 09ad541e98
commit 53a924c20f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,7 +25,7 @@ class Bufr(CMakePackage):
version("11.5.0", sha256="d154839e29ef1fe82e58cf20232e9f8a4f0610f0e8b6a394b7ca052e58f97f43") version("11.5.0", sha256="d154839e29ef1fe82e58cf20232e9f8a4f0610f0e8b6a394b7ca052e58f97f43")
def _setup_bufr_environment(self, env, suffix): def _setup_bufr_environment(self, env, suffix):
libname = "libufr_{0}".format(suffix) libname = "libbufr_{0}".format(suffix)
lib = find_libraries(libname, root=self.prefix, shared=False, recursive=True) lib = find_libraries(libname, root=self.prefix, shared=False, recursive=True)
lib_envname = "BUFR_LIB{0}".format(suffix) lib_envname = "BUFR_LIB{0}".format(suffix)
inc_envname = "BUFR_INC{0}".format(suffix) inc_envname = "BUFR_INC{0}".format(suffix)