From: James Peach Date: Thu, 4 May 2006 00:18:17 +0000 (+0000) Subject: r15423: Correct comparison logic so that libunwind can be correctly detected. X-Git-Tag: samba-4.0.0alpha6~801^2~8515 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7fbc91995e2d3330daed6353ec417a0b08408ed4;p=thirdparty%2Fsamba.git r15423: Correct comparison logic so that libunwind can be correctly detected. (This used to be commit 918f56b6de6e1297a53d88050d78d87330f7ba44) --- diff --git a/source3/configure.in b/source3/configure.in index cf079800fbd..bb4cf82f357 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -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