mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice-common
synced 2025-12-26 22:55:35 +00:00
- autotoolize - fix headers inclusion - generate gitignores - workaround serverSMARTCARD support with dirty hack...
20 lines
301 B
Bash
Executable File
20 lines
301 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e # exit on errors
|
|
|
|
srcdir=`dirname $0`
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
olddir=`pwd`
|
|
cd "$srcdir"
|
|
|
|
git submodule update --init
|
|
|
|
mkdir -p m4
|
|
autoreconf --verbose --force --install
|
|
|
|
cd "$olddir"
|
|
if [ -z "$NOCONFIGURE" ]; then
|
|
"$srcdir"/configure --enable-maintainer-mode ${1+"$@"}
|
|
fi
|