summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRJ Ryan <rryan@mixxx.org>2015-12-22 11:05:34 -0500
committerRJ Ryan <rryan@mixxx.org>2015-12-22 11:05:34 -0500
commit5c76ee3c2e4af3ca6a0b13d072ef334aea35ab34 (patch)
tree34fc8b27459bf4d57acb283f8b9c4e0cf7e826aa /src
parent16f0700e09fd7a28b618b27f0aad1c16123e1378 (diff)
Flag order matters when running debuild.
Diffstat (limited to 'src')
-rw-r--r--src/SConscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SConscript b/src/SConscript
index 7db1c9934f..af48307ce1 100644
--- a/src/SConscript
+++ b/src/SConscript
@@ -789,8 +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',
- '--set-envvar=build=' + build.build])
+ # Preserve the MIXXX_BUILD environment variable.
+ command.extend(['debuild', '-eMIXXX_BUILD', '-S', '-sa',])
else:
command.extend(['pdebuild'])
result = os.system(' '.join(command))