We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08a2bc3 commit 59af195Copy full SHA for 59af195
bin/misc-functions.sh
@@ -223,6 +223,12 @@ install_qa_check() {
223
echo "${obj} ${needed}" >> "${PORTAGE_BUILDDIR}"/build-info/NEEDED
224
echo "${arch#EM_};${obj};${soname};${rpath};${needed}" >> "${PORTAGE_BUILDDIR}"/build-info/NEEDED.ELF.2
225
done <<< ${scanelf_output}
226
+
227
+ # scanelf's output ordering is non-deterministic.
228
+ local needed
229
+ for needed in "${PORTAGE_BUILDDIR}"/build-info/NEEDED{,.ELF.2}; do
230
+ sort -o "${needed}" "${needed}"
231
+ done
232
fi
233
234
[[ -n "${QA_SONAME_NO_SYMLINK}" ]] && \
0 commit comments