Skip to content
Snippets Groups Projects
Commit 64b156e6 authored by Danny Auble's avatar Danny Auble
Browse files

fix issue with == where it should be =

parent 93287838
No related branches found
No related tags found
No related merge requests found
...@@ -64,7 +64,7 @@ AC_DEFUN([X_AC_NRT], ...@@ -64,7 +64,7 @@ AC_DEFUN([X_AC_NRT],
AC_DEFINE(HAVE_LIBNRT, 1, [define if you have libnrt.so]) AC_DEFINE(HAVE_LIBNRT, 1, [define if you have libnrt.so])
fi fi
if test "x$ac_have_nrt_h" == "xyes" && test "x$ac_have_libnrt" == "xyes"; then if test "x$ac_have_nrt_h" = "xyes" && test "x$ac_have_libnrt" = "xyes"; then
ac_have_nrt="yes" ac_have_nrt="yes"
fi fi
AM_CONDITIONAL(HAVE_NRT, test "x$ac_have_nrt" = "xyes") AM_CONDITIONAL(HAVE_NRT, test "x$ac_have_nrt" = "xyes")
......
...@@ -21259,7 +21259,7 @@ $as_echo "#define HAVE_LIBNRT 1" >>confdefs.h ...@@ -21259,7 +21259,7 @@ $as_echo "#define HAVE_LIBNRT 1" >>confdefs.h
   
fi fi
   
if test "x$ac_have_nrt_h" == "xyes" && test "x$ac_have_libnrt" == "xyes"; then if test "x$ac_have_nrt_h" = "xyes" && test "x$ac_have_libnrt" = "xyes"; then
ac_have_nrt="yes" ac_have_nrt="yes"
fi fi
if test "x$ac_have_nrt" = "xyes"; then if test "x$ac_have_nrt" = "xyes"; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment