aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/modules/pkgconfig.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2020-11-20 14:56:29 -0800
committerDylan Baker <dylan@pnwbakers.com>2020-11-20 15:08:40 -0800
commitf6672c7a1923c3e052af3ad223d6075b86378bfc (patch)
tree2f5a00744c247fa37044cb2a584cc6defa68cf50 /mesonbuild/modules/pkgconfig.py
parentcef406b3a5d502cde58cdad9fc9b978efb413327 (diff)
downloadmeson-f6672c7a1923c3e052af3ad223d6075b86378bfc.zip
meson-f6672c7a1923c3e052af3ad223d6075b86378bfc.tar.gz
meson-f6672c7a1923c3e052af3ad223d6075b86378bfc.tar.bz2
use real pathlib module
We added the _pathlib module to work around defeciencies in python 3.5's implementation, since we now rely on 3.6 lets drop this
Diffstat (limited to 'mesonbuild/modules/pkgconfig.py')
-rw-r--r--mesonbuild/modules/pkgconfig.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/modules/pkgconfig.py b/mesonbuild/modules/pkgconfig.py
index 62e1c15..7e19d71 100644
--- a/mesonbuild/modules/pkgconfig.py
+++ b/mesonbuild/modules/pkgconfig.py
@@ -13,7 +13,7 @@
# limitations under the License.
import os, types
-from .._pathlib import PurePath
+from pathlib import PurePath
from .. import build
from .. import dependencies