blob: 563f30b5d187a6a9063a5628f7a41d07ba525d29 (
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
35
36
37
38
39
40
41
42
43
44
45
|
#! /bin/sh
sdir=`dirname $(readlink -f $0)`
rootdir=`dirname $sdir`
bname=`basename $0 .sh`
logfile=$bname.log
rm -f $logfile
. $sdir/setup-machine-arch.sh
export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-$archabi
if [ ! -e $JAVA_HOME ] ; then
echo $JAVA_HOME does not exist
exit 1
fi
CPU_COUNT=`getconf _NPROCESSORS_ONLN`
# run 'dpkg-reconfigure locales' enable 'en_US.UTF-8'
export LANG=en_US.UTF-8
export LC_MEASUREMENT=en_US.UTF-8
buildit() {
echo rootdir $rootdir
echo logfile $logfile
echo CPU_COUNT $CPU_COUNT
cd $rootdir/build-$archabi
rm -rf documentation
make -j $CPU_COUNT install doc
if [ $? -eq 0 ] ; then
echo "REBUILD SUCCESS $bname $archabi"
rm -f $rootdir/documentation.tar.xz
tar caf $rootdir/documentation.tar.xz documentation
cd $rootdir
return 0
else
echo "REBUILD FAILURE $bname $archabi"
cd $rootdir
return 1
fi
}
buildit 2>&1 | tee $logfile
|