File: bootstrap

package info (click to toggle)
globus-gridftp-server 3.23-1%2Bsqueeze1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 3,916 kB
  • ctags: 2,603
  • sloc: ansic: 30,294; sh: 8,597; makefile: 417; perl: 9
file content (36 lines) | stat: -rwxr-xr-x 995 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
28
29
30
31
32
33
34
35
36
#! /bin/sh

# checking for the GLOBUS_LOCATION

if test "x$GLOBUS_LOCATION" = "x"; then
    echo "ERROR Please specify GLOBUS_LOCATION" >&2
    exit 1
fi

if [ ! -f ${GLOBUS_LOCATION}/libexec/globus-bootstrap.sh ]; then
    echo "ERROR: Unable to locate \${GLOBUS_LOCATION}/libexec/globus-bootstrap.sh"
    echo "       Please ensure that you have installed the globus-core package and"
    echo "       that GLOBUS_LOCATION is set to the proper directory"
    exit
fi

echo -n "Checking for data modules... "
modules=`ls modules | grep -v CVS | grep -v Makefile`
modules_makefiles=
delim=
if test "X$modules" != "X" ; then
  echo
  for module in $modules ; do
    if test -f modules/$module/Makefile.am ; then
        modules_makefiles="$modules_makefiles modules/$module/Makefile"
        echo "Including module: $module"
    fi
  done
else
  echo "none found"
fi

cp -f configure.in.in configure.in
echo "$modules_makefiles)" >> configure.in

. ${GLOBUS_LOCATION}/libexec/globus-bootstrap.sh