On Fri, 23 Mar 2018 17:38:24 +0000 "Dr. David Alan Gilbert" <dgilb...@redhat.com> wrote:
> * Michael S. Tsirkin (m...@redhat.com) wrote: > > @@ -120,6 +124,10 @@ EOF > > cp "$tmpdir/include/asm/unistd_x32.h" > > "$output/linux-headers/asm-x86/" > > cp "$tmpdir/include/asm/unistd_64.h" > > "$output/linux-headers/asm-x86/" > > fi > > + if [ $arch = s390 ]; then > > + cp "$tmpdir/include/asm/unistd_32.h" > > "$output/linux-headers/asm-arm/" > > + cp "$tmpdir/include/asm/unistd_64.h" > > "$output/linux-headers/asm-arm/" > > That doesn't look right - I'm guessing that should be copying into > asm-s390 ? I think we rather need "$arch = arm" or so here (s390 only has unistd.h, which is already handled).