Show
Ignore:
Timestamp:
04/23/08 12:40:58 (8 months ago)
Author:
kris
Message:

Updated pbi builder scripts

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pbibuild/pbibuilder/scripts/1.createworld.sh

    r980 r1753  
    1414fi 
    1515 
    16 PDESTDIR="${PROGDIR}/buildworld" ; export PDESTDIR 
     16PDESTDIR="${PROGDIR}/buildworld63" ; export PDESTDIR 
    1717 
    1818if [ -e "${PDESTDIR}" ] 
     
    2525mkdir -p ${PDESTDIR} 
    2626 
    27 echo "Making the /pbi-build/buildworld environment..." 
    28 cd /usr/src 
     27echo "Making the /pbi-build/buildworld63 environment..." 
     28cd /pbi-build/fbsd-source/6.3/src 
    2929make buildworld installworld DESTDIR=${PDESTDIR} >${PROGDIR}/log/buildworld.log 2>${PROGDIR}/log/buildworld.log 
    3030make distribution DESTDIR=${PDESTDIR} >>${PROGDIR}/log/buildworld.log 2>>${PROGDIR}/log/buildworld.log 
    3131 
     32 
     33 
     34PDESTDIR="${PROGDIR}/buildworld70" ; export PDESTDIR 
     35 
     36if [ -e "${PDESTDIR}" ] 
     37then 
     38  echo "Removing ${PDESTDIR}" 
     39  chflags -R noschg ${PDESTDIR} 
     40  rm -rf ${PDESTDIR} 
     41fi 
     42 
     43mkdir -p ${PDESTDIR} 
     44 
     45echo "Making the /pbi-build/buildworld70 environment..." 
     46cd /pbi-build/fbsd-source/7.0/src 
     47make buildworld installworld DESTDIR=${PDESTDIR} >${PROGDIR}/log/buildworld.log 2>${PROGDIR}/log/buildworld.log 
     48make distribution DESTDIR=${PDESTDIR} >>${PROGDIR}/log/buildworld.log 2>>${PROGDIR}/log/buildworld.log 
     49 
     50