summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorunknown <lenz@mysql.com>2003-03-05 09:49:28 +0100
committerunknown <lenz@mysql.com>2003-03-05 09:49:28 +0100
commit4c1782eab758c383dbd211292d26efb058794ff7 (patch)
tree40eaf4c2e0ad7b9cd96021e3f0193bcb7940b9a6 /configure.in
parentabd03435121e7aae9a5c704983f6baab2dab84c9 (diff)
downloadmariadb-git-4c1782eab758c383dbd211292d26efb058794ff7.tar.gz
- safeguard against an endless loop when MIT pthreads are not installed
(Bug #121)
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 2e28b1d7db4..35a2e3702c1 100644
--- a/configure.in
+++ b/configure.in
@@ -2583,7 +2583,7 @@ EOF
echo ""
echo "Configuring MIT Pthreads"
# We will never install so installation paths are not needed.
- (cd mit-pthreads; sh ./configure)
+ (cd mit-pthreads && sh ./configure) || exit 1
echo "End of MIT Pthreads configuration"
echo ""
LIBS="$MT_LD_ADD $LIBS"