There are various constructs like
if test "$foo" == "something"; then fi
in configure.in. However "==" is a bash extension and makes the resulting configure script non-portable. The fix is simple, just replace the "==" with "=" in configure.in.
-Dan
Log in to post a comment.