blob: 3156af978704ea4cdf3041e0724efe4bf8d910f7 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
(
cd $(realpath $(dirname $0))/../.. || exit 1
rm -rf autom4te.cache
./autogen.sh || exit 1
./configure --with-previous-options || exit 1
)
make -C $(realpath $(dirname $0)) glusterrpms_without_autogen
|