1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

r15423: Correct comparison logic so that libunwind can be correctly detected.

(This used to be commit 918f56b6de)
This commit is contained in:
James Peach 2006-05-04 00:18:17 +00:00 committed by Gerald (Jerry) Carter
parent fca8766ee1
commit 7fbc91995e

View File

@ -1256,7 +1256,7 @@ AC_CHECK_LIB(exc, trace_back_stack)
# any of them.
AC_MSG_CHECKING([for libunwind])
save_LIBS=$LIBS
if test x"$UNAME_P" != xunknown ; then
if test x"$UNAME_P" = xunknown ; then
# This probably won't link without the platform-specific libunwind.
LIBS="$LIBS -lunwind"
else