mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-29 10:21:18 -06:00
11 lines
187 B
Bash
11 lines
187 B
Bash
|
#!/usr/bin/bash
|
||
|
set -o errexit
|
||
|
|
||
|
pushd "$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||
|
|
||
|
test ! -x "configure" && autoreconf -i
|
||
|
test ! -f "Makefile" && ./configure "$@"
|
||
|
make rpms
|
||
|
|
||
|
popd
|