From 0e796641559f0fd6ac75a190157c8940cb7bc5a8 Mon Sep 17 00:00:00 2001 From: TingPing Date: Fri, 2 Sep 2016 16:11:54 -0400 Subject: [PATCH] Minor pkgconfig module cleanups (#748) * pkgconfig: Remove unused function Leftover copy from modtest * Add self to authors.txt --- authors.txt | 1 + mesonbuild/modules/pkgconfig.py | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/authors.txt b/authors.txt index ddccebc12..734d7dfa7 100644 --- a/authors.txt +++ b/authors.txt @@ -42,3 +42,4 @@ Zhe Wang Wim Taymans Matthias Klumpp Elliott Sales de Andrade +Patrick Griffis diff --git a/mesonbuild/modules/pkgconfig.py b/mesonbuild/modules/pkgconfig.py index 29e2847e1..9f6fc077f 100644 --- a/mesonbuild/modules/pkgconfig.py +++ b/mesonbuild/modules/pkgconfig.py @@ -18,9 +18,6 @@ import os class PkgConfigModule: - def print_hello(self, state, args, kwargs): - print('Hello from a Meson module') - def generate_pkgconfig_file(self, state, libraries, subdirs, name, description, version, filebase, pub_reqs, priv_reqs, priv_libs): coredata = state.environment.get_coredata()