summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Peach <jpeach@samba.org>2006-05-04 00:18:17 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:16:42 -0500
commit7fbc91995e2d3330daed6353ec417a0b08408ed4 (patch)
treefd7a1545b44d901d8369bd19997d15402cf88810
parentfca8766ee18b812e95203810b6a2a5b6c9de5f30 (diff)
downloadsamba-7fbc91995e2d3330daed6353ec417a0b08408ed4.tar.gz
samba-7fbc91995e2d3330daed6353ec417a0b08408ed4.tar.bz2
samba-7fbc91995e2d3330daed6353ec417a0b08408ed4.zip
r15423: Correct comparison logic so that libunwind can be correctly detected.
(This used to be commit 918f56b6de6e1297a53d88050d78d87330f7ba44)
-rw-r--r--source3/configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in
index cf079800fb..bb4cf82f35 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