On 01/21/2014 11:17 AM, Pádraig Brady wrote: > On 01/21/2014 09:24 AM, Bernhard Voelker wrote: >> In a git working tree (v8.22-15-g9a115f3): >> >> $ git clean -xdfq >> $ ./bootstrap >> ... >> $ ./configure --quiet --without-selinux >> configure: WARNING: SELinux enabled, but matchpathcon_init_prefix not found >> configure: WARNING: The install utility may run slowly >> config.status: creating po/POTFILES >> config.status: creating po/Makefile >> >> Why is "SELinux enabled" although requested otherwise? > > It's not really enabled I think and that's just an erroneous warning.
yes, you're right, thanks. > Does the attached suppress it? Almost: ./configure: line 59762: syntax error near unexpected token `fi' ./configure: line 59762: ` fi' You need: - if test "$with_selinux" != no + if test "$with_selinux" != no; then With that, it works, i.e. the bogus warning disappears. Thanks & have a nice day, Berny