File: bootstrap

package info (click to toggle)
grid-packaging-tools 3.2globus2-5
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 4,816 kB
  • ctags: 1,621
  • sloc: perl: 19,536; sh: 3,047; makefile: 320; exp: 89
file content (27 lines) | stat: -rwxr-xr-x 537 bytes parent folder | download
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
#! /bin/sh

# check for autotools

for program in automake autoconf aclocal
    do
    ($program --version ) > /dev/null 2>&1 || { 
    echo "ERROR: $program not found" >&2
    exit 1
    }
done

echo "running aclocal"
#aclocal_path=`which aclocal`
#echo "aclocal path = $aclocal_path"
aclocal

echo "running automake -c -a --foreign"
#automake_path=`which automake`
#echo "automake path = $automake_path"
automake -c -a --foreign

echo "running autoconf"
#autoconf_path=`which autoconf`
#echo "autoconf path = $autoconf_path"
autoconf