aboutsummaryrefslogtreecommitdiff
path: root/build.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-11-05 00:29:39 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2013-11-05 00:29:39 +0200
commit337b14e6029d9a68398b5170ebd992f59e5aeeb0 (patch)
tree7f2077165186a787a25e86a3b469e8b0eb9f47b8 /build.py
parentbcdb84fcbe31b9dff686794b1cabaff0e95a5e91 (diff)
downloadmeson-337b14e6029d9a68398b5170ebd992f59e5aeeb0.zip
meson-337b14e6029d9a68398b5170ebd992f59e5aeeb0.tar.gz
meson-337b14e6029d9a68398b5170ebd992f59e5aeeb0.tar.bz2
Some test tuning.
Diffstat (limited to 'build.py')
-rw-r--r--build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.py b/build.py
index 7b5e513..4ce6b03 100644
--- a/build.py
+++ b/build.py
@@ -419,7 +419,7 @@ class SharedLibrary(BuildTarget):
def __init__(self, name, subdir, is_cross, sources, objects, environment, kwargs):
self.version = None
self.soversion = None
- super().__init__(name, subdir, is_cross, sources, environment, kwargs);
+ super().__init__(name, subdir, is_cross, sources, objects, environment, kwargs);
self.prefix = environment.get_shared_lib_prefix()
self.suffix = environment.get_shared_lib_suffix()