From d15b1f62ec6820d8ba64673834e577e7a91549b0 Mon Sep 17 00:00:00 2001 From: Sergey Fionov Date: Fri, 24 Jun 2022 17:28:47 +0300 Subject: [PATCH] Pull request 390: Fix conanfile for dns-libs Merge in ADGUARD-CORE-LIBS/dns-libs from fix/test_conan to master Squashed commit of the following: commit e19c8d642142ae5e2163f5370a51fa3b073cbec3 Author: Sergey Fionov Date: Fri Jun 24 16:15:23 2022 +0300 test --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index d25bfeb0..1f2f9ba0 100644 --- a/conanfile.py +++ b/conanfile.py @@ -76,7 +76,7 @@ def package(self): ] for m in MODULES: - self.copy("*.h", dst="include", src="source_subfolder/%s/include" % m, keep_path=False) + self.copy("*.h", dst="include", src="source_subfolder/%s/include" % m) self.copy("*.lib", dst="lib", keep_path=False) self.copy("*.dll", dst="bin", keep_path=False)