summaryrefslogtreecommitdiff
path: root/mesonbuild/coredata.py
diff options
context:
space:
mode:
authorIgor Gnatenko <i.gnatenko.brain@gmail.com>2016-10-07 23:15:55 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2016-10-11 00:57:01 +0300
commita513bcfde613f2a0403f7b0cd34d4bd62674c1d8 (patch)
treeba27af62a44cfcf5b8b26fd5a4a6dea9af46d8c5 /mesonbuild/coredata.py
parent999669e8501501d4618588008e4bf4353a1ace2a (diff)
downloadmeson-a513bcfde613f2a0403f7b0cd34d4bd62674c1d8.tar.gz
allow libdir/includedir/etc. be absolute paths
In Fedora we don't care about prefix, we want to ensure that libdir is /usr/lib64, localedir is /usr/share/locale, and cetera. Additionally, we don't need to ensure that prefix is absolute as we check it in main. Fixes: cc19bf0f45f9 ("Move option validation in objects rather than doing it only in the conf script.") Closes: https://github.com/mesonbuild/meson/issues/869 Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
Diffstat (limited to 'mesonbuild/coredata.py')
-rw-r--r--mesonbuild/coredata.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/mesonbuild/coredata.py b/mesonbuild/coredata.py
index 406cb4cd8..109bb329c 100644
--- a/mesonbuild/coredata.py
+++ b/mesonbuild/coredata.py
@@ -36,11 +36,6 @@ class UserStringOption(UserOption):
def validate(self, value):
if not isinstance(value, str):
raise MesonException('Value "%s" for string option "%s" is not a string.' % (str(value), self.name))
- if self.name == 'prefix' and not os.path.isabs(value):
- raise MesonException('Prefix option value \'{0}\' must be an absolute path.'.format(value))
- if self.name in ('libdir', 'bindir', 'includedir', 'datadir', 'mandir', 'localedir') \
- and os.path.isabs(value):
- raise MesonException('Option %s must not be an absolute path.' % self.name)
def set_value(self, newvalue):
self.validate(newvalue)