summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-12-09 23:19:44 +0000
committerCarl Hetherington <cth@carlh.net>2016-12-09 23:19:44 +0000
commit9b318229182f420b83779c989195b9dcfb58e85b (patch)
tree3e873936b8ce793889a670e49e71115112194e75 /cscript
parentfd22e4101f224b012a2a1a56a4e7439024857da4 (diff)
Fix previous.
Diffstat (limited to 'cscript')
-rw-r--r--cscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/cscript b/cscript
index 51bf123f8..73fc69730 100644
--- a/cscript
+++ b/cscript
@@ -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)