lilypond-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: broken doc build (orchestra.ly)


From: Knut Petersen
Subject: Re: broken doc build (orchestra.ly)
Date: Wed, 25 May 2016 20:00:38 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.7.0

Am 25.05.2016 um 15:58 schrieb Phil Holmes:

Knut, did you use any options to ./configure ?  config.log should
mention how configure was called.

I use the following script to build lilypond:

RED='\033[0;31m'
NOC='\033[0m'

function doit {
  AT=`date +"%s"`
  echo -en exec $RED$1$NOC in `pwd` ...
  $1  &>> $MYROOT/buildlog
  if [ $? -ne 0 ]; then echo -n " failed";exit 1;else echo -n " succeeded";fi
  BT=`date +"%s"`
  let "CT = $BT - $AT"
  echo " after $CT seconds"
}

MAKEPAR="-j 11 CPU_COUNT=11 LANGS='de'"

echo -e "\nBuilding lilypond ... this will take some time ;-)\n"
DT=`date +"%s"`
cd /home/knut/sources/lily
export MYROOT=/home/knut/sources/lilybuilt/
rm -r $MYROOT
mkdir $MYROOT

git reset --hard  &> $MYROOT/buildlog
git clean -dfx  &>> $MYROOT/buildlog
doit "./autogen.sh --noconfigure"
mkdir build
cd build
doit "../configure --prefix=$MYROOT"
doit "make $MAKEPAR all"
doit "make $MAKEPAR install"
doit "make $MAKEPAR doc"
doit "make $MAKEPAR install-doc"


ET=`date +"%s"`
let "FT = $ET - $DT"
echo "Total lilypond build time: $FT seconds"

exit 0





reply via email to

[Prev in Thread] Current Thread [Next in Thread]