From d483da46a97216a15588c4413694c73e53ab9659 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Tue, 2 Jul 2019 10:31:39 -0700 Subject: compilers: Move clike into a mixins directory The compilers module is rather large and confusing, with spaghetti dependencies going every which way. I'm planning to start breaking out the internal representations into a mixins submodule, for things that shouldn't be required outside of the compilers module itself. --- mesonbuild/compilers/objc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild/compilers/objc.py') diff --git a/mesonbuild/compilers/objc.py b/mesonbuild/compilers/objc.py index 9730ea4..44c414a 100644 --- a/mesonbuild/compilers/objc.py +++ b/mesonbuild/compilers/objc.py @@ -17,7 +17,7 @@ import typing from ..mesonlib import EnvironmentException, MachineChoice -from .clike import CLikeCompiler +from .mixins.clike import CLikeCompiler from .compilers import Compiler, ClangCompiler, GnuCompiler class ObjCCompiler(CLikeCompiler, Compiler): -- cgit v1.1