diff options
author | bk@work.mysql.com <> | 2000-07-31 21:29:14 +0200 |
---|---|---|
committer | bk@work.mysql.com <> | 2000-07-31 21:29:14 +0200 |
commit | f4c589ff6c653d1d2a09c26e46ead3c8a15655d8 (patch) | |
tree | d253a359142dfc1ed247d5d4365d86972ea31109 /mit-pthreads/configure | |
parent | 7eec25e393727b16bb916b50d82b0aa3084e065c (diff) | |
download | mariadb-git-f4c589ff6c653d1d2a09c26e46ead3c8a15655d8.tar.gz |
Import changeset
Diffstat (limited to 'mit-pthreads/configure')
-rwxr-xr-x | mit-pthreads/configure | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/mit-pthreads/configure b/mit-pthreads/configure new file mode 100755 index 00000000000..9411483a31d --- /dev/null +++ b/mit-pthreads/configure @@ -0,0 +1,19 @@ +#!/bin/sh + +# This silliness is because Chris wants the autoconf-related files +# and makefiles not to appear in the top-level directory. Fine by +# me, I don't much care. This script just needs to invoke the real +# configure script... + +config=`echo $0 | sed -e 's,configure$,config/configure,'` + +if test ! -d obj ; then + mkdir obj +fi + +if test -n "$1" ; then + exec $config "$@" +else + exec $config +fi + |