Magellan Linux

Diff of /trunk/mage-buildserver/helper/buildserver-build-install-prerequisites.sh

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2763 by niro, Thu Aug 28 08:17:36 2014 UTC revision 2934 by niro, Wed Feb 3 11:55:44 2016 UTC
# Line 123  SAVED_PKGDIR="${PKGDIR}" Line 123  SAVED_PKGDIR="${PKGDIR}"
123  PKGDIR="/var/cache/mage/tmp-packages"  PKGDIR="/var/cache/mage/tmp-packages"
124  install -d "${PKGDIR}"  install -d "${PKGDIR}"
125    
126    # clean all tmp-packages if requested
127    if [[ ${CLEAN_TMP_PACKAGES} = 1 ]]
128    then
129     echo "Cleaning tmp-packages as requested"
130     cleanpkg
131    fi
132    
133  # now install the packages (no srcinstall, when the user not explcitly want this)  # now install the packages (no srcinstall, when the user not explcitly want this)
134  fetch_packages ${INSTALL_DEPS} || die "fetching packages"  fetch_packages ${INSTALL_DEPS} || die "fetching packages"
135  md5sum_packages ${INSTALL_DEPS} || die "md5 sum packages"  md5sum_packages ${INSTALL_DEPS} || die "md5 sum packages"
 unpack_packages ${INSTALL_DEPS} || die "unpacking packages"  
136  install_packages ${INSTALL_DEPS} || die "installing packages"  install_packages ${INSTALL_DEPS} || die "installing packages"
137  if [[ ${CLEANPACKAGES} = 1 ]]  if [[ ${CLEANPACKAGES} = 1 ]]
138  then  then

Legend:
Removed from v.2763  
changed lines
  Added in v.2934