aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mesonbuild/compilers/objc.py3
-rw-r--r--mesonbuild/compilers/objcpp.py3
2 files changed, 2 insertions, 4 deletions
diff --git a/mesonbuild/compilers/objc.py b/mesonbuild/compilers/objc.py
index 7d19e52..32f17ff 100644
--- a/mesonbuild/compilers/objc.py
+++ b/mesonbuild/compilers/objc.py
@@ -12,10 +12,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-import os.path, subprocess
import typing as T
-from ..mesonlib import EnvironmentException, MachineChoice
+from ..mesonlib import MachineChoice
from .compilers import Compiler
from .mixins.clike import CLikeCompiler
diff --git a/mesonbuild/compilers/objcpp.py b/mesonbuild/compilers/objcpp.py
index fdd9762..003da54 100644
--- a/mesonbuild/compilers/objcpp.py
+++ b/mesonbuild/compilers/objcpp.py
@@ -12,10 +12,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-import os.path, subprocess
import typing as T
-from ..mesonlib import EnvironmentException, MachineChoice
+from ..mesonlib import MachineChoice
from .mixins.clike import CLikeCompiler
from .compilers import Compiler