Christopher Rogers created THRIFT-1664:
------------------------------------------
Summary: Reference to non-existing variable in build script
Key: THRIFT-1664
URL: https://issues.apache.org/jira/browse/THRIFT-1664
Project: Thrift
Issue Type: Bug
Components: Build Process
Affects Versions: 0.8
Reporter: Christopher Rogers
Priority: Trivial
In the file "aclocal/ax_signed_right_shift.m4" on line 107, the last "l" in the
variable $success_logical is missing. I know nothing of the language this file
uses, but since this actually builds I assume this will always evaluate to no.
{code}
if test "$success_arithmetic" = "yes" && test "$success_logica" =
"yes" ; then
AC_MSG_ERROR("Right shift appears to be both arithmetic and
logical!")
elif test "$success_arithmetic" = "yes" ; then
ax_signed_right_shift=arithmetic
AC_DEFINE([SIGNED_RIGHT_SHIFT_IS], 1,
[Indicates the effect of the right shift operator
on negative signed integers])
elif test "$success_logical" = "yes" ; then
ax_signed_right_shift=logical
AC_DEFINE([SIGNED_RIGHT_SHIFT_IS], 2,
[Indicates the effect of the right shift operator
on negative signed integers])
else
ax_signed_right_shift=unknown
AC_DEFINE([SIGNED_RIGHT_SHIFT_IS], 3,
[Indicates the effect of the right shift operator
on negative signed integers])
fi
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira