diff options
author | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-06-25 13:10:05 -0500 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-06-25 17:56:54 -0500 |
commit | f3d3b071fd193bf8685c86e74f32b7b96b5e3be2 (patch) | |
tree | a542aec2643a51e33c69b49d8f4a3c6cd4acbee6 /tools | |
parent | 7c5497f9958da568e96ebe4c4dd1a5f087cdbe22 (diff) | |
download | uhd-f3d3b071fd193bf8685c86e74f32b7b96b5e3be2.tar.gz uhd-f3d3b071fd193bf8685c86e74f32b7b96b5e3be2.tar.bz2 uhd-f3d3b071fd193bf8685c86e74f32b7b96b5e3be2.zip |
uhd: Prepare branch for 4.1.0.0-rc1 release
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 'tools')
-rw-r--r-- | tools/debs/uhd_ubuntu_deb.py | 2 |
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) |