summaryrefslogtreecommitdiff
path: root/mesonbuild/cmake/executor.py
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2020-09-29 17:36:00 +0200
committerDaniel Mensinger <daniel@mensinger-ka.de>2020-10-04 10:45:48 +0200
commit1dfaccfd9129aa4ac24b46f0a9490b19ae59adc0 (patch)
tree466311902843db8865967e23bfbcbd5c1859cb04 /mesonbuild/cmake/executor.py
parent77b5c82d0725eb914aa341a617dd9f418de60910 (diff)
downloadmeson-1dfaccfd9129aa4ac24b46f0a9490b19ae59adc0.tar.gz
pathlib: Fix resolve() by overriding it in Python 3.5
Diffstat (limited to 'mesonbuild/cmake/executor.py')
-rw-r--r--mesonbuild/cmake/executor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/cmake/executor.py b/mesonbuild/cmake/executor.py
index bf89822b5..0413b56b2 100644
--- a/mesonbuild/cmake/executor.py
+++ b/mesonbuild/cmake/executor.py
@@ -16,7 +16,7 @@
# or an interpreter-based tool.
import subprocess as S
-from pathlib import Path
+from .._pathlib import Path
from threading import Thread
import typing as T
import re