Your package patchelf failed to build from source in current rawhide. http://koji.fedoraproject.org/koji/taskinfo?taskID=10122804 For details on mass rebuild see https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
Created attachment 1047598 [details] build.log
Created attachment 1047599 [details] root.log
Created attachment 1047600 [details] state.log
Hardended-build Fedora feature makes executables PIC. And patchelf fails selftest on such an executable (see the 'maximum file size exceeded'): $ ../src/patchelf --set-interpreter /oops scratch/set-interpreter-short/simple warning: working around a Linux kernel bug by creating a hole of 18870272 bytes in ‘scratch/set-interpreter-short/simple’ maximum file size exceeded The reproducer is to call configure as: ./configure CFLAGS='-O0 -fPIE' LDFLAGS='-specs=/usr/lib/rpm/redhat/redhat-hardened-ld' CXXFLAGS='-O0 -fPIE' The /usr/lib/rpm/redhat/redhat-hardened-ld contains: *self_spec: + %{!shared:%{!r:-pie}} *link: + -z now Alternatively you can replace LDFLAGS with '-z now' and add '-pie' to LDFLAGS_local variable in tests/Makefile.am (and run autoreconf before ./configure).