Skip to content

Commit

Permalink
Do not use os.path, since the code runs on one computer but the comma…
Browse files Browse the repository at this point in the history
…nd will be executed on another with possibly different OS.
  • Loading branch information
gkistanova committed Jun 12, 2020
1 parent b0ff7ed commit 8d932d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zorg/buildbot/builders/LibcxxAndAbiBuilder.py
Expand Up @@ -66,8 +66,8 @@ def getLibcxxAndAbiBuilder(f=None, env=None, additional_features=None,
cmake_opts.append('-D' + key + '=' + cmake_extra_opts[key])

if use_cache:
libcxx_cache_dir = os.path.join(rel_src_dir, '..', 'libcxx', 'cmake', 'caches')
cache = os.path.join(libcxx_cache_dir, use_cache)
libcxx_cache_dir = '%s/../libcxx/cmake/caches' % rel_src_dir
cache = '%s/%s' % (libcxx_cache_dir, use_cache)
cmake_opts.append('-C' + cache)

# FIXME: The libc++ abilist's are generated in release mode with debug
Expand Down

0 comments on commit 8d932d0

Please sign in to comment.