diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-11-27 11:17:57 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-11-27 11:17:57 +0100 |
| commit | 4ef7662ca390eacd62b85bdf1346fa0a446af543 (patch) | |
| tree | a84d56882b559f6a51d4af85f61977c84ccfd138 | |
| parent | 574c1a009635e0f9f4d5b653a99f803510761a8d (diff) | |
Don't build disk writer on Ubuntu 14.04.
| -rw-r--r-- | cscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -301,7 +301,7 @@ def can_build_disk(target): if target.platform == 'osx': return True if target.platform == 'linux': - if target.distro == 'ubuntu' and target.version != '16.04': + if target.distro == 'ubuntu' and target.version not in ('14.04', '16.04'): return True if target.distro == 'debian' and target.version != '9': return True |
