diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-10-10 20:19:22 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-10-10 21:28:28 +0300 |
commit | 28df8b800e6b4a36e97bfb3db8e6f84b262b1ce7 (patch) | |
tree | e5c02eb07a399c73ec5fc727590e01aceedb56aa /mesonbuild/interpreter.py | |
parent | e2b3752f875754abcc3981754505ae0db9e18155 (diff) | |
download | meson-28df8b800e6b4a36e97bfb3db8e6f84b262b1ce7.zip meson-28df8b800e6b4a36e97bfb3db8e6f84b262b1ce7.tar.gz meson-28df8b800e6b4a36e97bfb3db8e6f84b262b1ce7.tar.bz2 |
Add an option to select if static libraries are built with -fPIC.
Diffstat (limited to 'mesonbuild/interpreter.py')
-rw-r--r-- | mesonbuild/interpreter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/interpreter.py b/mesonbuild/interpreter.py index be19bab..92b997a 100644 --- a/mesonbuild/interpreter.py +++ b/mesonbuild/interpreter.py @@ -1117,7 +1117,7 @@ class Interpreter(): if not os.path.isfile(mesonfile): raise InvalidArguments('Missing Meson file in %s' % mesonfile) with open(mesonfile, encoding='utf8') as mf: - code = mf.read() + code = mf.read() if len(code.strip()) == 0: raise InvalidCode('Builder file is empty.') assert(isinstance(code, str)) |