diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-12-09 23:19:44 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-12-09 23:19:44 +0000 |
| commit | 9b318229182f420b83779c989195b9dcfb58e85b (patch) | |
| tree | 3e873936b8ce793889a670e49e71115112194e75 /cscript | |
| parent | fd22e4101f224b012a2a1a56a4e7439024857da4 (diff) | |
Fix previous.
Diffstat (limited to 'cscript')
| -rw-r--r-- | cscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -26,7 +26,7 @@ import copy deb_build_depends = dict() -deb_build_depends_base = {'debhelper', 'python', 'g++', 'pkg-config', 'libsndfile1-dev', 'libgtk2.0-dev'} +deb_build_depends_base = ['debhelper', 'python', 'g++', 'pkg-config', 'libsndfile1-dev', 'libgtk2.0-dev'] deb_build_depends['12.04'] = copy.deepcopy(deb_build_depends_base) deb_build_depends['12.04'].extend(['libssh-dev']) @@ -145,7 +145,7 @@ def make_control(debian_version, bits, filename, debug): print('Section: video', file=f) print('Priority: extra', file=f) print('Maintainer: Carl Hetherington <carl@dcpomatic.com>', file=f) - packages('Build-Depends', deb_build_depends, f) + packages('Build-Depends', deb_build_depends[debian_version], f) print('Standards-Version: 3.9.3', file=f) print('Homepage: http://dcpomatic.com/', file=f) print('', file=f) |
