# Before performing this procedure: # # rename: /glibc64/include/ # to: /glibc64/include.hide/ # After performing this procedure: # # rename: /glibc64/include.hide/ # to: /glibc64/include/ # Important: Between the rename of the directory and the rename back, # builds of other distro packages will not work and should not be at- # tempted. set -e export CFGDIR=`echo /src/0*/*_iridium` ls $CFGDIR || exit 1 export SPCDIR=$CFGDIR/special ls $SPCDIR || exit 1 export BSCDIR=$SPCDIR/build ls $BSCDIR || exit 1 ls $BSCDIR/build-01-setenv.sh ls $BSCDIR/build-02-fixdirs.sh ls $BSCDIR/build-03-gn.sh ls $BSCDIR/build-04-make.sh ls $BSCDIR/build-05-tarball.sh ls $BSCDIR/myflags.gn export TEMPCHRO=/var/tmp/buildchro rm -fr $TEMPCHRO mkdir -p $TEMPCHRO cd $TEMPCHRO tar jxf $CFGDIR/iridium*.bz2 cd iridium* || exit 1 export CHROTOP=`pwd` patch -p1 < $BSCDIR/patches/iridium-01-laclin.spcpat . $BSCDIR/build-01-setenv.sh bash -e $BSCDIR/build-02-fixdirs.sh bash -e $BSCDIR/build-03-gn.sh bash -e $BSCDIR/build-04-make.sh bash -e $BSCDIR/build-05-tarball.sh echo build-iridium.sh done