aboutsummaryrefslogtreecommitdiff
path: root/pylibfdt
diff options
context:
space:
mode:
authorRob Herring <robh@kernel.org>2021-11-10 19:11:32 -0600
committerDavid Gibson <david@gibson.dropbear.id.au>2021-11-11 14:29:12 +1100
commitc691776ddb26acbd3674722caafacaf7b6e3e807 (patch)
tree6a5cdb641856a34b524399e35e2e32ae77c1501d /pylibfdt
parent5216f3f1bbb70aef463b6cd78dbbb0f4c4c71606 (diff)
downloaddtc-c691776ddb26acbd3674722caafacaf7b6e3e807.zip
dtc-c691776ddb26acbd3674722caafacaf7b6e3e807.tar.gz
dtc-c691776ddb26acbd3674722caafacaf7b6e3e807.tar.bz2
pylibfdt: Use setuptools instead of distutils
The use of setuptools is favored over distutils. setuptools is needed to support building Python 'wheels' and for pip support. Signed-off-by: Rob Herring <robh@kernel.org> Message-Id: <20211111011135.2386773-2-robh@kernel.org> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'pylibfdt')
-rwxr-xr-xpylibfdt/setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylibfdt/setup.py b/pylibfdt/setup.py
index ef40f15..f065a59 100755
--- a/pylibfdt/setup.py
+++ b/pylibfdt/setup.py
@@ -10,7 +10,7 @@ Copyright (C) 2017 Google, Inc.
Written by Simon Glass <sjg@chromium.org>
"""
-from distutils.core import setup, Extension
+from setuptools import setup, Extension
import os
import re
import sys