diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-01-08 22:47:57 +0200 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-01-09 21:11:48 +0200 |
| commit | fbabe8ad85725762e46b7c4c2f2c680c3351ec80 (patch) | |
| tree | d8293e07d3e66096e9789e41cb04364588f2d841 /mesonbuild/modules/pkgconfig.py | |
| parent | 24221d71ccd341759b008cf1918826910c40247c (diff) | |
| download | meson-fbabe8ad85725762e46b7c4c2f2c680c3351ec80.tar.gz | |
There are two different kinds of extensions: modules that create new
objects directly and snippets that just call into interpreter methods.
Diffstat (limited to 'mesonbuild/modules/pkgconfig.py')
| -rw-r--r-- | mesonbuild/modules/pkgconfig.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mesonbuild/modules/pkgconfig.py b/mesonbuild/modules/pkgconfig.py index 38358f3b2..c558d48bb 100644 --- a/mesonbuild/modules/pkgconfig.py +++ b/mesonbuild/modules/pkgconfig.py @@ -12,14 +12,16 @@ # See the License for the specific language governing permissions and # limitations under the License. +import os + from .. import build from .. import mesonlib from .. import mlog from . import ModuleReturnValue +from . import ExtensionModule -import os -class PkgConfigModule: +class PkgConfigModule(ExtensionModule): def _get_lname(self, l, msg, pcfile): # Nothing special |
