aboutsummaryrefslogtreecommitdiffstats
path: root/tools/debs/uhd_ubuntu_deb.py
diff options
context:
space:
mode:
authorAaron Rossetto <aaron.rossetto@ni.com>2021-06-25 13:10:05 -0500
committerAaron Rossetto <aaron.rossetto@ni.com>2021-06-25 17:56:54 -0500
commitf3d3b071fd193bf8685c86e74f32b7b96b5e3be2 (patch)
treea542aec2643a51e33c69b49d8f4a3c6cd4acbee6 /tools/debs/uhd_ubuntu_deb.py
parentci: Enable manifest to trigger CI/PR builds (diff)
downloaduhd-f3d3b071fd193bf8685c86e74f32b7b96b5e3be2.tar.xz
uhd-f3d3b071fd193bf8685c86e74f32b7b96b5e3be2.zip
uhd: Prepare branch for 4.1.0.0-rc1 releasev4.1.0.0-rc1
uhd: Update changelog for 4.1 RC images: Update manifest debian: Update changelog debian: Update control and copyright installers: automatic version handling for dsc Signed-off-by: Aaron Rossetto <aaron.rossetto@ni.com> Signed-off-by: Steven Koo <steven.koo@ni.com>
Diffstat (limited to '')
-rw-r--r--tools/debs/uhd_ubuntu_deb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/debs/uhd_ubuntu_deb.py b/tools/debs/uhd_ubuntu_deb.py
index 6adc4c1f9..6739ade99 100644
--- a/tools/debs/uhd_ubuntu_deb.py
+++ b/tools/debs/uhd_ubuntu_deb.py
@@ -111,7 +111,7 @@ def main(args):
print("Building deb with dsc using pbuilder for {}".format(args.release))
os.mkdir(args.buildpath + "/result")
result = subprocess.run(shlex.split(
- "sudo pbuilder build --buildresult ./result uhd_4.0.0.0-0ubuntu1~{}1.dsc".format(args.release)), cwd=args.buildpath)
+ "sudo pbuilder build --buildresult ./result uhd_{}-0ubuntu1~{}1.dsc".format(uhd_version, args.release)), cwd=args.buildpath)
if result.returncode:
print("pbuilder failed")
sys.exit(result.returncode)