aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTingPing <tingping@tingping.se>2016-09-02 16:11:54 -0400
committerJussi Pakkanen <jpakkane@gmail.com>2016-09-02 23:11:54 +0300
commit0e796641559f0fd6ac75a190157c8940cb7bc5a8 (patch)
treea5c366732f41f2ad764778cba7d077db277917ce
parentc8213aaf1e3503855377e1372e1a7bbb19c5463d (diff)
downloadmeson-0e796641559f0fd6ac75a190157c8940cb7bc5a8.zip
meson-0e796641559f0fd6ac75a190157c8940cb7bc5a8.tar.gz
meson-0e796641559f0fd6ac75a190157c8940cb7bc5a8.tar.bz2
Minor pkgconfig module cleanups (#748)
* pkgconfig: Remove unused function Leftover copy from modtest * Add self to authors.txt
-rw-r--r--authors.txt1
-rw-r--r--mesonbuild/modules/pkgconfig.py3
2 files changed, 1 insertions, 3 deletions
diff --git a/authors.txt b/authors.txt
index ddccebc..734d7df 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 29e2847..9f6fc07 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()