-
Notifications
You must be signed in to change notification settings - Fork 6
/
autogen.sh
executable file
·56 lines (44 loc) · 1.65 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
#! /bin/sh
#
# ParaStation
#
# Copyright (C) 2021 ParTec AG, Munich
#
# This file may be distributed under the terms of the Q Public License
# as defined in the file LICENSE.QPL included in the packaging of this
# file.
########################################################################
## Utility functions
########################################################################
error() {
echo "===> ERROR: $@"
}
echo_n() {
# "echo -n" isn't portable, must portably implement with printf
printf "%s" "$*"
}
########################################################################
echo
echo "####################################"
echo "## Checking user environment"
echo "####################################"
echo
########################################################################
## Checks to make sure we are running from the correct location
########################################################################
echo_n "Verifying the location of autogen.sh... "
if [ ! -d dist -o ! -s dist/psmpi.spec.templ ] ; then
error "must execute at top level directory for now"
exit 1
fi
# Set the SRCROOTDIR to be used later and avoid "cd ../../"-like usage.
SRCROOTDIR=$PWD
echo "done"
########################################################################
## Call autogen.sh from MPICH source tree
########################################################################
( cd ${SRCROOTDIR}/mpich2 && ./autogen.sh --with-doc && cd ${SRCROOTDIR} )
########################################################################
## Run autotools in the source root
########################################################################
autoreconf -vif