diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2014-07-18 20:40:42 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2014-07-18 20:40:42 +0300 |
commit | b8f6c3f39c3e8406ecd2829670b060528f7e35d0 (patch) | |
tree | c1abc653c51fae5f40819af276ef2e14b1f3a895 /mesonconf.py | |
parent | b33c55bba00e681862e17df16444079232b53e5a (diff) | |
download | meson-b8f6c3f39c3e8406ecd2829670b060528f7e35d0.zip meson-b8f6c3f39c3e8406ecd2829670b060528f7e35d0.tar.gz meson-b8f6c3f39c3e8406ecd2829670b060528f7e35d0.tar.bz2 |
Standardise on prefix instead of installprefix.
Diffstat (limited to 'mesonconf.py')
-rwxr-xr-x | mesonconf.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonconf.py b/mesonconf.py index 0da31de..56b08ba 100755 --- a/mesonconf.py +++ b/mesonconf.py @@ -90,7 +90,7 @@ class Conf: self.coredata.use_pch = self.tobool(v) elif k == 'unity': self.coredata.unity = self.tobool(v) - elif k == 'installprefix': + elif k == 'prefix': if not os.path.isabs(v): raise ConfException('Install prefix %s is not an absolute path.' % v) self.coredata.prefix = v @@ -175,7 +175,7 @@ class Conf: print('') print('Directories\n') parr = [] - parr.append(['installprefix', 'Install prefix', self.coredata.prefix]) + parr.append(['prefix', 'Install prefix', self.coredata.prefix]) parr.append(['libdir', 'Library directory', self.coredata.libdir]) parr.append(['bindir', 'Binary directory', self.coredata.bindir]) parr.append(['includedir', 'Header directory', self.coredata.includedir]) |