diff options
author | unknown <lenz@mysql.com> | 2003-03-05 09:49:28 +0100 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2003-03-05 09:49:28 +0100 |
commit | 4c1782eab758c383dbd211292d26efb058794ff7 (patch) | |
tree | 40eaf4c2e0ad7b9cd96021e3f0193bcb7940b9a6 | |
parent | abd03435121e7aae9a5c704983f6baab2dab84c9 (diff) | |
download | mariadb-git-4c1782eab758c383dbd211292d26efb058794ff7.tar.gz |
- safeguard against an endless loop when MIT pthreads are not installed
(Bug #121)
-rw-r--r-- | configure.in | 2 |
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" |