diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-02-16 19:42:31 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-02-20 00:58:15 +0100 |
| commit | 731b231637cadee7671f9fa2fd493926dabb82e3 (patch) | |
| tree | d6a2a8fa978468fc98cb72214da2494d66b838fc /cscript | |
| parent | 127ef874a8af848048c54756e7cc0ba80b48b8d8 (diff) | |
Inhibit dbgsym package creation in non-debug mode.
Diffstat (limited to 'cscript')
| -rw-r--r-- | cscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -620,8 +620,8 @@ def package_debian(target, cpu, version, options): target.set('CDIST_CONFIGURE', '"' + configure_options(target, options) + '"') target.set('CDIST_PACKAGE', f'dcpomatic{suffix}') - if target.debug: - target.set('CDIST_DEBUG_PACKAGE_FLAG', f'--dbg-package=dcpomatic{suffix}-dbg') + if not target.debug: + target.set('CDIST_DEBUG_PACKAGE_FLAG', '--no-ddebs') target.command('dpkg-buildpackage -uc -us') |
