Merge pull request #391 from nirbheek/minor-changes
Bunch of minor changes
This commit is contained in:
commit
31fc897496
|
@ -83,7 +83,9 @@ class Backend():
|
|||
targetdir = self.get_target_dir(target)
|
||||
fname = target.get_filename()
|
||||
if isinstance(fname, list):
|
||||
fname = fname[0] # HORROR, HORROR! Fix this.
|
||||
# FIXME FIXME FIXME: build.CustomTarget has multiple output files
|
||||
# and get_filename() returns them all
|
||||
fname = fname[0]
|
||||
filename = os.path.join(targetdir, fname)
|
||||
return filename
|
||||
|
||||
|
|
|
@ -62,7 +62,7 @@ class UserStringOption(UserOption):
|
|||
if not isinstance(value, str):
|
||||
raise MesonException('Value "%s" for string option "%s" is not a string.' % (str(newvalue), self.name))
|
||||
if self.name == 'prefix' and not os.path.isabs(value):
|
||||
raise MesonException('Prefix option must be an absolute path.')
|
||||
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)
|
||||
|
|
|
@ -82,7 +82,7 @@ class MesonApp():
|
|||
def __init__(self, dir1, dir2, script_file, handshake, options):
|
||||
(self.source_dir, self.build_dir) = self.validate_dirs(dir1, dir2, handshake)
|
||||
if not os.path.isabs(options.prefix):
|
||||
raise RuntimeError('--prefix must be an absolute path.')
|
||||
raise RuntimeError('--prefix value \'{0}\' must be an absolute path: '.format(options.prefix))
|
||||
if options.prefix.endswith('/') or options.prefix.endswith('\\'):
|
||||
options.prefix = options.prefix[:-1]
|
||||
self.meson_script_file = script_file
|
||||
|
|
Loading…
Reference in New Issue