diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-03-18 23:28:48 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-03-18 23:28:48 +0200 |
commit | dc049660e7d5e7c4b4a9ded4acb02fe90860adfb (patch) | |
tree | 35d58b4307411503d36b7ba2fd52cea4843c0ce3 /mesonbuild/environment.py | |
parent | 2e73994978102cf4eb09ecbe21c41bbf96966724 (diff) | |
parent | 11f63105d003e222576a4e23ab106af2fc5a7741 (diff) | |
download | meson-dc049660e7d5e7c4b4a9ded4acb02fe90860adfb.zip meson-dc049660e7d5e7c4b4a9ded4acb02fe90860adfb.tar.gz meson-dc049660e7d5e7c4b4a9ded4acb02fe90860adfb.tar.bz2 |
Merge pull request #456 from nirbheek/implement_libexecdir
New builtin option: libexecdir for installation of helper executables
Diffstat (limited to 'mesonbuild/environment.py')
-rw-r--r-- | mesonbuild/environment.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py index 1586248..61954af 100644 --- a/mesonbuild/environment.py +++ b/mesonbuild/environment.py @@ -590,6 +590,9 @@ class Environment(): def get_libdir(self): return self.coredata.get_builtin_option('libdir') + def get_libexecdir(self): + return self.coredata.get_builtin_option('libexecdir') + def get_bindir(self): return self.coredata.get_builtin_option('bindir') |