<div dir="ltr"><div><div>Hi,<br><br>I've found what looks like a bug in the SlackBuild for Recoll. Even if ENABLE_CAMELCASE is set to NO (the default), the test in the script returns true, and --enable-camelcase is passed to the configure command. The following partial diff shows a corrected version, with whitespace around the == operator:<br>
<br>-if test $ENABLE_CAMELCASE=="YES"<br>+if test $ENABLE_CAMELCASE == "YES"<br>    then CAMEL_CASE_CONFIG="--enable-camelcase"<br>    else CAMEL_CASE_CONFIG=""<br>fi<br><br></div>This was discovered while chasing down a Recoll indexing crash:<br>
<a href="https://bitbucket.org/medoc/recoll/issue/210/indexing-error-std-out_of_range-with-some">https://bitbucket.org/medoc/recoll/issue/210/indexing-error-std-out_of_range-with-some</a><br><br></div>Cheers,<br>Jeff<br><div>
<br></div></div>