woff2 failed to build from source in Fedora rawhide/f35 https://koji.fedoraproject.org/koji/taskinfo?taskID=72520134 For details on the mass rebuild see: https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Please fix woff2 at your earliest convenience and set the bug's status to ASSIGNED when you start fixing it. If the bug remains in NEW state for 8 weeks, woff2 will be orphaned. Before branching of Fedora 36, woff2 will be retired, if it still fails to build. For more details on the FTBFS policy, please visit: https://docs.fedoraproject.org/en-US/fesco/Fails_to_build_from_source_Fails_to_install/
Created attachment 1808947 [details] build.log file build.log too big, will only attach last 32768 bytes
Created attachment 1808948 [details] root.log file root.log too big, will only attach last 32768 bytes
Created attachment 1808949 [details] state.log
Failing on ppc64le the problem is that the %cmake_install macro does /usr/bin/cmake --install redhat-linux-build and later we want to cd %{_target_platform} that expands to cd ppc64le-redhat-linux-gnu In a fedpkg local build that's /usr/bin/cmake --install x86_64-redhat-linux-gnu cd x86_64-redhat-linux-gnu Apparently the (at least ppc64le) %cmake_install target is broken in rawhide, things worked in f34 and f33. Or if that changed for all platforms we'd need to compose cd %{_vendor}-%{_os}-build which looks odd to me; or is there another macro for that?
You need to use %{_vpath_builddir} instead of %{_target_platform}. See: https://src.fedoraproject.org/rpms/redhat-rpm-config/c/e0cfcc0fc76a7642faabb25c5e348d6a1314ace2
Thanks!