Skip to content

Commit eb80013

Browse files
authored
Merge pull request #4513 from Szelethus/fix_cc_lib_dir_realpath
[fix] Fix missing CC_LIB_DIR when dev_package is used
2 parents 67d57fc + 47d5bd2 commit eb80013

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codechecker_common/cli.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def main():
9595
"""
9696
if not os.environ.get('CC_LIB_DIR'):
9797
os.environ['CC_LIB_DIR'] = \
98-
os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
98+
os.path.dirname(os.path.dirname(__file__))
9999

100100
data_files_dir_path = get_data_files_dir_path()
101101
os.environ['CC_DATA_FILES_DIR'] = data_files_dir_path

0 commit comments

Comments
 (0)