--- Begin Message ---
- Subject: Re: [Rpm-maint] RPM 4.10.0 alpha released
- From: Thierry Vignaud <thierry.vignaud@xxxxxxxxx>
- Date: Wed, 21 Mar 2012 17:05:39 +0100
- Delivered-to: rpm-announce@xxxxxxxxxx
- In-reply-to: <4F68517D.3020500@laiskiainen.org>
- References: <4F68517D.3020500@laiskiainen.org>
On 20 March 2012 10:44, Panu Matilainen <pmatilai@xxxxxxxxxxxxxxx> 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
--- End Message ---
_______________________________________________ Rpm-list mailing list Rpm-list@xxxxxxxxxxxxx http://lists.rpm.org/mailman/listinfo/rpm-list