mirror of
https://github.com/ceph/ceph
synced 2024-12-16 08:26:25 +00:00
6732ef05ac
This is enough for unit tests to run. Signed-off-by: Sage Weil <sage@redhat.com>
17 lines
263 B
Bash
Executable File
17 lines
263 B
Bash
Executable File
#!/bin/sh -x
|
|
git submodule update --init --recursive
|
|
if test -e build; then
|
|
echo 'build dir already exists; rm -rf build and re-run'
|
|
exit 1
|
|
fi
|
|
mkdir build
|
|
cd build
|
|
cmake $@ ..
|
|
|
|
cat <<EOF > ceph.conf
|
|
plugin dir = lib
|
|
erasure code dir = lib
|
|
EOF
|
|
|
|
echo done.
|