-
Notifications
You must be signed in to change notification settings - Fork 0
/
autogen.sh
60 lines (53 loc) · 1.22 KB
/
autogen.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/bin/sh
# NOTE: Please avoid bashisms (bash specific syntax) in this script
# install Lustre Git commit hooks by default - LU-2083
for HOOK in commit-msg prepare-commit-msg; do
[ -e .git/hooks/$HOOK ] || ln -sf ../../build/$HOOK .git/hooks/
done
echo "Checking for a complete tree..."
REQUIRED_DIRS="libcfs lnet lustre"
OPTIONAL_DIRS="snmp portals"
CONFIGURE_DIRS="libsysio lustre-iokit ldiskfs"
for dir in $REQUIRED_DIRS ; do
if [ ! -d "$dir" ] ; then
cat >&2 <<EOF
Your tree seems to be missing $dir.
Please read README.lustrecvs for details.
EOF
exit 1
fi
ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I $PWD/$dir/autoconf"
done
# optional directories for Lustre
for dir in $OPTIONAL_DIRS; do
if [ -d "$dir" ] ; then
ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I $PWD/$dir/autoconf"
fi
done
run_cmd()
{
cmd="$@"
echo -n "Running $cmd"
eval $cmd
res=$?
if [ $res -ne 0 ]; then
echo " failed: $res"
echo "Aborting"
exit 1
fi
echo
}
run_cmd "aclocal -I $PWD/config $ACLOCAL_FLAGS"
run_cmd "autoheader"
run_cmd "automake -a -c"
run_cmd autoconf
# Run autogen.sh in these directories
PWD_SAVE=$PWD
for dir in $CONFIGURE_DIRS; do
if [ -d $dir ] ; then
cd $dir
echo "Running autogen for $dir..."
run_cmd "sh autogen.sh"
fi
cd $PWD_SAVE
done