blob: 2bd4b94f62d0ddf9a71390ba06eab70b0d215c6a (
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
|