summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRJ Ryan <rryan@mixxx.org>2015-12-22 10:52:03 -0500
committerRJ Ryan <rryan@mixxx.org>2015-12-22 10:52:03 -0500
commit16f0700e09fd7a28b618b27f0aad1c16123e1378 (patch)
tree3265dd6b7586b3122c3ac369eef1448f1939c42e /src
parentb0a9f4760a8034e58196df38629419025be00bd9 (diff)
Set debuild 'build' environment variable explicitly.
Diffstat (limited to 'src')
-rw-r--r--src/SConscript3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/SConscript b/src/SConscript
index e59c61e657..7db1c9934f 100644
--- a/src/SConscript
+++ b/src/SConscript
@@ -789,7 +789,8 @@ def BuildUbuntuPackage(target, source, env):
if package_target == 'source':
# TODO(rryan) we have to figure out the key-signing situation
# here.
- command.extend(['debuild', '-S', '-sa'])
+ command.extend(['debuild', '-S', '-sa',
+ '--set-envvar=build=' + build.build])
else:
command.extend(['pdebuild'])
result = os.system(' '.join(command))