blob: b4a2a6d4f88e6a9e837fd59ddbdebe4c8494919b (
plain)
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
|
#!/bin/sh
# the source dir where this script is
SCRIPT_DIR=`echo $0 | sed 's|\(.*\)/.*$|\1|'`
. $SCRIPT_DIR/auto-build-common
# the name of this script
SCRIPT=`echo $0| sed 's|.*/\(.*\)|\1|g'`
case $SYSTEM in
linux)
echo "Configuring for GNU/Linux"
;;
darwin)
echo "Configuring for Darwin/Mac OS X"
;;
mingw*)
echo "Configuring for MinGW/Windows"
;;
cygwin*)
echo "Configuring for Cygwin/Windows"
;;
*)
echo "ERROR: Platform $SYSTEM not supported!"
exit
;;
esac
echo "This currently does nothing, but it could..."
# if the below word prints, the status report email is not sent
echo SUCCESS
|