Menu

#33 == is not portable in configure.in

open
nobody
None
5
2006-10-23
2006-10-23
No

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

Discussion


Log in to post a comment.