-
Notifications
You must be signed in to change notification settings - Fork 8
/
autogen.sh
executable file
·43 lines (36 loc) · 1.06 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
#!/bin/sh
#
# As which and whereis behave different on various platforms, a simple
# shell routine searching the split PATH is used instead.
# Do this outside the routine for effiency
PATH_SPLIT=`echo $PATH | awk -F ':' '{ for (i = 1; i < NF; i++) print $i}'`
# Search for command in PATH_SPLIT, sets command_found
find_command()
{
command_found=''
for dir in $PATH_SPLIT; do
if [ -x "$dir/$1" ]; then
command_found="$dir/$1"
break
fi
done
}
# Search fod command, print $1 and run command with arg
find_fallback_and_execute()
{
find_command "$2"
if [ -z "$command_found" ]; then
command_found="$3"
fi
printf " $1"
$command_found $4
}
# Begin output
echo "Generating build scripts, this might take a while."
find_fallback_and_execute "aclocal" "aclocal-1.9" "aclocal" ""
find_fallback_and_execute "autoheader" "autoheader-2.59" "autoheader" ""
find_fallback_and_execute "autoconf" "autoconf-2.59" "autoconf" ""
find_fallback_and_execute "automake" "automake-1.9" "automake" "-a --gnu"
# End output
echo ""
echo "Done generating build scripts."