mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/win32-vd_agent
synced 2025-12-28 15:20:42 +00:00
18 lines
238 B
Bash
Executable File
18 lines
238 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
srcdir=`dirname $0`
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
pushd "$srcdir"
|
|
git submodule update --init --recursive
|
|
autoreconf -vfi
|
|
popd
|
|
|
|
if [ -z "$NOCONFIGURE" ]; then
|
|
"$srcdir"/configure --enable-maintainer-mode "$@"
|
|
fi
|
|
|
|
|