mirror of
https://github.com/virt-manager/virt-manager.git
synced 2024-12-23 17:34:21 +03:00
14 lines
122 B
Bash
Executable File
14 lines
122 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# Make makefiles.
|
|
|
|
autoreconf -i
|
|
|
|
test -d build && rm -rf build
|
|
mkdir build
|
|
cd build
|
|
../configure $@
|
|
|