blob: e4ca52f00fe1fb637b5cc3ba3ee202acd0fa234e (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
# Create MySQL cmake configure wrapper
die() { echo "$@"; exit 1; }
# Use a configure script that will call CMake.
path=`dirname $0`
cp $path/cmake_configure.sh $path/../configure
chmod +x $path/../configure
|