Commit 3b6f843b authored by lenz@mysql.com's avatar lenz@mysql.com

- Fix checking for $orbit_config_path in acinclude.m4 (gave an error

   message on STDOUT on AIX and assigned the wrong value)
parent d819e45a
......@@ -800,7 +800,7 @@ dnl get substituted.
AC_DEFUN(MYSQL_CHECK_ORBIT, [
AC_MSG_CHECKING(for ORBit)
orbit_config_path=`which orbit-config`
if test -n "$orbit_config_path"
if test -n "$orbit_config_path" -a $? = 0
then
orbit_exec_prefix=`orbit-config --exec-prefix`
orbit_includes=`orbit-config --cflags server`
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment