mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-28 00:52:17 +00:00
47cbdeb836
The test-build resides inside the docker image and is supposed to be called from outside, downloads the branch and calls build-default. Buid-default will run up to make. Signed-off-by: David Sterba <dsterba@suse.com>
14 lines
229 B
Bash
Executable File
14 lines
229 B
Bash
Executable File
#!/bin/sh
|
|
# usage: $0 [optional arguments to configure]
|
|
|
|
if ! [ -f "./autogen.sh" ]; then
|
|
echo "ERROR: cannot find autogen.sh, run from the top level directory"
|
|
exit 1
|
|
fi
|
|
|
|
set -e
|
|
|
|
./autogen.sh
|
|
./configure "$@"
|
|
make
|