pbuilder-dist: Add support for riscv64.

LP: #1859277
Signed-off-by: Mattia Rizzolo <mattia@debian.org>
This commit is contained in:
Mattia Rizzolo 2020-01-11 15:36:48 +01:00
parent 6e3d26185c
commit f8fa865ab2
No known key found for this signature in database
GPG Key ID: 0816B9E18C762BAD
2 changed files with 3 additions and 1 deletions

2
debian/changelog vendored
View File

@ -6,6 +6,8 @@ ubuntu-dev-tools (0.175) unstable; urgency=medium
* requestbackport:
+ Error out nicely when a tracking project doesn't exist. LP: #1852901
* d/control: Bump Standards-Version to 4.4.1, no changes needed.
* pbuilder-dist:
+ Add support for riscv64. LP: #1859277
[ Stefano Rivera ]
* merge-changelog: rewrite the changelog handling to use python3-debian.

View File

@ -443,7 +443,7 @@ def main():
elif len(args) > 0 and args[0] in (
'alpha', 'amd64', 'arm', 'armeb', 'armel', 'armhf', 'arm64',
'i386', 'lpia', 'm68k', 'mips', 'mipsel', 'powerpc', 'ppc64',
'ppc64el', 's390x', 'sh4', 'sh4eb', 'sparc', 'sparc64'):
'ppc64el', 'riscv64', 's390x', 'sh4', 'sh4eb', 'sparc', 'sparc64'):
requested_arch = args.pop(0)
else:
requested_arch = None