diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-03-19 10:36:00 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-03-19 10:36:00 +0100 |
| commit | 897889cc871d507af5745ae758bfaaeb89d3da17 (patch) | |
| tree | 25cd32694ae10d49bbc7876d6ded2b1149f14822 /wscript | |
| parent | 25da3976eaef1ba90416300774153e3b8c5cc062 (diff) | |
Fix incorrect install prefix setup.
Diffstat (limited to 'wscript')
| -rw-r--r-- | wscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -92,8 +92,8 @@ def configure(conf): conf.env.DEBUG = conf.options.enable_debug conf.env.STATIC_DCPOMATIC = conf.options.static_dcpomatic conf.env.ENABLE_DISK = conf.options.enable_disk - if conf.options.destdir is None: - conf.env.INSTALL_PREFIX = conf.env.PREFIX + if conf.options.destdir == '': + conf.env.INSTALL_PREFIX = conf.options.prefix else: conf.env.INSTALL_PREFIX = conf.options.destdir |
