From 2c6415264d451edd587ea3ec3cad9dbc0b8a3034 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Schr=C3=B6ter?= Date: Mon, 3 Feb 2014 17:33:49 +0100 Subject: [PATCH] - fix "osc build $repo aarch64" call without specifing a spec file. aarch64 is not recognized as architecture due to wild parameter guessing --- osc/build.py | 1 + 1 file changed, 1 insertion(+) diff --git a/osc/build.py b/osc/build.py index ede86fa5..fc1d5f60 100644 --- a/osc/build.py +++ b/osc/build.py @@ -53,6 +53,7 @@ qemu_can_build = [ 'armv4l', 'armv5el', 'armv5l', 'armv6l', 'armv7l', 'armv6el', ] can_also_build = { + 'aarch64':['aarch64'], # only needed due to used heuristics in build parameter evaluation 'armv6l' :[ 'armv4l', 'armv5l', 'armv6l', 'armv5el', 'armv6el' ], 'armv7l' :[ 'armv4l', 'armv5l', 'armv6l', 'armv7l', 'armv5el', 'armv6el', 'armv7el' ], 'armv5el':[ 'armv4l', 'armv5l', 'armv5el' ], # not existing arch, just for compatibility