mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-01-22 22:03:58 +03:00
14 lines
122 B
Bash
14 lines
122 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
# Make makefiles.
|
||
|
|
||
|
autoreconf -i
|
||
|
|
||
|
test -d build && rm -rf build
|
||
|
mkdir build
|
||
|
cd build
|
||
|
../configure $@
|
||
|
|