[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: SELinux enabled despite --without-selinux?
From: |
Bernhard Voelker |
Subject: |
Re: SELinux enabled despite --without-selinux? |
Date: |
Tue, 21 Jan 2014 12:03:01 +0100 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 |
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