Show
Ignore:
Timestamp:
05/12/08 12:59:42 (4 months ago)
Author:
kris
Message:

Fixed up the pbibuilder scripts to only do 1 version of FreeBSD, since you
can't cross build in a chroot environment properly

Files:
1 modified

Legend:

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

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