Changeset 1892
- Timestamp:
- 05/12/08 12:59:42 (2 months ago)
- Location:
- pbibuild/pbibuilder
- Files:
-
- 3 modified
-
buildpbi.sh (modified) (1 diff)
-
scripts/1.createworld.sh (modified) (2 diffs)
-
scripts/2.1.startmake.sh (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pbibuild/pbibuilder/buildpbi.sh
r1753 r1892 29 29 30 30 # Check if we need to remake the buildworld environment 31 if [ ! -e "/pbi-build/buildworld63/.cshrc" -o "$REBUILDWORLD" = "1" ] 32 then 33 echo "Rebuilding the world environment..." 34 35 # Make the world environment 36 cd ${PROGDIR}/scripts 37 ./1.createworld.sh 38 fi 39 40 # Check if we need to remake the buildworld environment 41 if [ ! -e "/pbi-build/buildworld70/.cshrc" -o "$REBUILDWORLD" = "1" ] 31 if [ ! -e "/pbi-build/buildworld/.cshrc" -o "$REBUILDWORLD" = "1" ] 42 32 then 43 33 echo "Rebuilding the world environment..." -
pbibuild/pbibuilder/scripts/1.createworld.sh
r1753 r1892 14 14 fi 15 15 16 PDESTDIR="${PROGDIR}/buildworld 63" ; export PDESTDIR16 PDESTDIR="${PROGDIR}/buildworld" ; export PDESTDIR 17 17 18 18 if [ -e "${PDESTDIR}" ] … … 25 25 mkdir -p ${PDESTDIR} 26 26 27 echo "Making the /pbi-build/buildworld 63environment..."27 echo "Making the /pbi-build/buildworld environment..." 28 28 cd /pbi-build/fbsd-source/6.3/src 29 29 make buildworld installworld DESTDIR=${PDESTDIR} >${PROGDIR}/log/buildworld.log 2>${PROGDIR}/log/buildworld.log 30 30 make distribution DESTDIR=${PDESTDIR} >>${PROGDIR}/log/buildworld.log 2>>${PROGDIR}/log/buildworld.log 31 31 32 33 34 PDESTDIR="${PROGDIR}/buildworld70" ; export PDESTDIR35 36 if [ -e "${PDESTDIR}" ]37 then38 echo "Removing ${PDESTDIR}"39 chflags -R noschg ${PDESTDIR}40 rm -rf ${PDESTDIR}41 fi42 43 mkdir -p ${PDESTDIR}44 45 echo "Making the /pbi-build/buildworld70 environment..."46 cd /pbi-build/fbsd-source/7.0/src47 make buildworld installworld DESTDIR=${PDESTDIR} >${PROGDIR}/log/buildworld.log 2>${PROGDIR}/log/buildworld.log48 make distribution DESTDIR=${PDESTDIR} >>${PROGDIR}/log/buildworld.log 2>>${PROGDIR}/log/buildworld.log49 50 -
pbibuild/pbibuilder/scripts/2.1.startmake.sh
r1753 r1892 43 43 OUTDIR="${PROGDIR}/outgoing/${module}" ; export OUTDIR 44 44 45 if [ "${FBSDBASE}" = "7.0" ] 46 then 47 BUILDWORLD="${PROGDIR}/buildworld70" ; export BUILDWORLD70 48 WORLDSRC="${PROGDIR}/fbsd-source/7.0/src" ; export WORLDSRC 49 elif [ "${FBSDBASE}" = "6.3" -o -z "${FBSDBASE}" ] 50 then 51 BUILDWORLD="${PROGDIR}/buildworld63" ; export BUILDWORLD63 52 WORLDSRC="${PROGDIR}/fbsd-source/6.3/src" ; export WORLDSRC 53 fi 45 # Set our buildworld variables 46 BUILDWORLD="${PROGDIR}/buildworld" ; export BUILDWORLD 47 WORLDSRC="${PROGDIR}/fbsd-source/6.3/src" ; export WORLDSRC 54 48 55 49 # Check that the output directory for module
