Hi! On Sun, 2016-07-17 at 22:47:50 +0200, Graham Inggs wrote: > On 17 July 2016 at 16:20, Guillem Jover <guil...@debian.org> wrote: > > The actual problem is that you are doing this: > > > > ifeq (,$(filter $(DEB_HOST_ARCH),armel, i386)) > > > > and using a comma-separated list instead of a space-separated one, > > which means the first item is “armel,” instead of “armel” and that > > does not match. > > You were spot on, thanks for the explanation!
Great, and no problem! > So the following message on the armel buildds is of no concern? > > >> Check architectures > >> ─────────────────── > >> > >> sh: 1: gcc: not found > >> sbuild: warning: couldn't determine gcc system type, falling back to > >> default (native compilation) Yeah, just a warning and can be ignored. Thanks, Guillem