On 20 March 2012 10:44, Panu Matilainen <pmati...@laiskiainen.org> wrote:
> For download information and further details, see the draft release notes:
> http://rpm.org/wiki/Releases/4.10.0

Build (actually tests) failed on non selinux systems:

for d in /proc /sys /selinux /etc/selinux; do [ -d ${d} ] && ln -s
${d} testing/${d}; done

will return 1 whereas the following is OK:
for d in /proc /sys /selinux /etc/selinux; do if [ -d ${d} ];then ln
-s ${d} testing/${d}; fi; done

Attached patch fixes that (of course patching the actual tarball needs
patching Makefile.in too)

Attachment: fix-tests-on-non-selinux-systems.diff
Description: Binary data

_______________________________________________
Rpm-maint mailing list
Rpm-maint@lists.rpm.org
http://lists.rpm.org/mailman/listinfo/rpm-maint

Reply via email to