Description of problem: Hello, we experience FTBFS during stage1 bootstrap and it seems the same issue has already been reported in scope of Bug 961542 and fixed with busybox-1.19-rlimit_fsize.patch. The problem apparently lies in the following ifarch condition in the spec file. It doesn't include %{arm} ---- %ifarch ppc %{power64} s390 s390x aarch64 %patch3 -b .rlimit_fsize -p1 %endif ---- Build log tail --------------- loginutils/passwd.c: In function ‘passwd_main’: loginutils/passwd.c:104:16: error: storage size of ‘rlimit_fsize’ isn’t known struct rlimit rlimit_fsize; ^ loginutils/passwd.c:188:2: warning: implicit declaration of function ‘setrlimit’ [-Wimplicit-function-declaration] setrlimit(RLIMIT_FSIZE, &rlimit_fsize); ^ loginutils/passwd.c:188:12: error: ‘RLIMIT_FSIZE’ undeclared (first use in this function) setrlimit(RLIMIT_FSIZE, &rlimit_fsize); ^ loginutils/passwd.c:188:12: note: each undeclared identifier is reported only once for each function it appears in loginutils/passwd.c:104:16: warning: unused variable ‘rlimit_fsize’ [-Wunused-variable] struct rlimit rlimit_fsize; ^ ---------- Version-Release number of selected component (if applicable): busybox-1.19.4-15.fc21 How reproducible: always
Created attachment 1030606 [details] busybox.log
The issue also appears on the i686 builder. That means it apparently affects all architectures. We cannot test x86_64 due to libgcc FTBFS. Please add %{arm} and %{ix86} or consider removing the %ifarch condition completely.
busybox-1.19.4-16.fc21 has been submitted as an update for Fedora 21. https://admin.fedoraproject.org/updates/busybox-1.19.4-16.fc21
Package busybox-1.19.4-16.fc21: * should fix your issue, * was pushed to the Fedora 21 testing repository, * should be available at your local mirror within two days. Update it with: # su -c 'yum update --enablerepo=updates-testing busybox-1.19.4-16.fc21' as soon as you are able to. Please go to the following url: https://admin.fedoraproject.org/updates/FEDORA-2015-9910/busybox-1.19.4-16.fc21 then log in and leave karma (feedback).
Seems fixed now. Thanks.