diff options
author | unknown <lenz@mysql.com> | 2002-09-27 11:24:11 +0200 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2002-09-27 11:24:11 +0200 |
commit | e0ee2de27a7a42f07eecc3ba371d363d1a7c955a (patch) | |
tree | adb0daf088772b38e510d9a038caaca904e3fbde /acinclude.m4 | |
parent | edd6449ed8cff4f79149d832da36b82b7fe4f781 (diff) | |
download | mariadb-git-e0ee2de27a7a42f07eecc3ba371d363d1a7c955a.tar.gz |
- Fix checking for $orbit_config_path in acinclude.m4 (gave an error
message on STDOUT on AIX and assigned the wrong value)
acinclude.m4:
- better checking for $orbit_config_path (thanks to Melvyn Sopacua
for the patch)
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 488d35c1268..72b50bcc18f 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -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` |