Skip to content

Commit 41ecbfe

Browse files
committed
FIX: linter warnings
1 parent 2ab02ec commit 41ecbfe

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

recipes/botan/all/conanfile.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
import glob
21
import os
32
import shutil
43

54
from conan import ConanFile
65
from conan.errors import ConanInvalidConfiguration
7-
from conan.tools.apple import is_apple_os, XCRun
6+
from conan.tools.apple import is_apple_os, fix_apple_shared_install_name, XCRun
87
from conan.tools.build import build_jobs, check_min_cppstd
98
from conan.tools.env import VirtualBuildEnv
109
from conan.tools.files import apply_conandata_patches, chdir, copy, export_conandata_patches, get
@@ -85,6 +84,10 @@ class BotanConan(ConanFile):
8584
"module_policy": None,
8685
}
8786

87+
def __init__(self):
88+
super().__init__()
89+
self._extra_cxxflags = None
90+
8891
@property
8992
def _is_x86(self):
9093
return str(self.settings.arch) in ['x86', 'x86_64']

0 commit comments

Comments
 (0)