Skip to content

Commit 47d8635

Browse files
committed
utils: Fix get_cbl_name() for mirrored Arch Linux configuration
Retain "archlinux" just in case we ever move back to the upstream source. Signed-off-by: Nathan Chancellor <nathan@kernel.org>
1 parent 38655d6 commit 47d8635

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def get_cbl_name():
114114
suse_arch = base_config.split("/")[-2]
115115
return suse_to_cbl[suse_arch]
116116
# Arch Linux is x86_64 only
117-
if "archlinux" in base_config:
117+
if "archlinux" in base_config or "linux_pkgbuild" in base_config:
118118
return "x86_64"
119119

120120
unique_defconfigs = {

0 commit comments

Comments
 (0)