Skip to content

Commit 02cec5b

Browse files
scpa1055cassava
authored andcommitted
vtd: Fix missing f string in conanfiles
1 parent da46743 commit 02cec5b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

optional/vtd/vendor/vtd-api-2.2.0/conanfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def package_info(self):
7474
#
7575
# VTD VERSION : (0) 2 . 2 . 0
7676
vtd_api_version = (0<<24) | (2<<16) | (2<<8) | 0
77-
self.cpp_info.defines = ["VTD_API_VERSION={vtd_api_version}"]
77+
self.cpp_info.defines = [f"VTD_API_VERSION={vtd_api_version}"]
7878

7979
if not self.in_local_cache:
8080
self.cpp_info.libs = ["vtd_api"]

optional/vtd/vendor/vtd-api-2022.3/conanfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def package_info(self):
7474
#
7575
# VTD VERSION : (1) 2022 . 03
7676
vtd_api_version = (1<<24) | (22<<16) | (3<<8) | 0
77-
self.cpp_info.defines = ["VTD_API_VERSION={vtd_api_version}"]
77+
self.cpp_info.defines = [f"VTD_API_VERSION={vtd_api_version}"]
7878

7979
if not self.in_local_cache:
8080
self.cpp_info.libs = ["vtd_api"]

0 commit comments

Comments
 (0)