Ignore:
Timestamp:
07/21/2007 04:36:34 PM (17 years ago)
Author:
Dan Nichilson <dnicholson@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
e6148eeb
Parents:
4487494
Message:

Reworked Xorg-7.2 md5sums

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@6947 af4574ff-66df-0310-9fd7-8a98e5e911e0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • x/installing/xorg7.xml

    r4487494 rd9a6d69  
    8484
    8585<screen>bash -e #exit on all errors
    86 for package in $(grep -v '^#' ../wgetlist.wget)
     86section=proto
     87version=&xorg7-version;
     88mkdir $section
     89cd $section
     90
     91# download and check packages
     92grep -v '^#' ../${section}-${version}.wget | wget -i- \
     93    -B http://xorg.freedesktop.org/releases/individual/${section}/
     94md5sum -c ../${section}-${version}.md5
     95
     96# build packages
     97for package in $(grep -v '^#' ../${section}-${version}.wget)
    8798do
    8899  packagedir=$(echo $package | sed 's/.tar.bz2//')
     
    95106  rm -rf $packagedir
    96107  rm -f $package
    97 done 2&gt;&amp;1 | tee -a ../xorg-compile.log #log the entire loop</screen>
     108done 2&gt;&amp;1 | tee -a ../xorg-${section}-compile.log #log the entire loop</screen>
    98109
    99110  <para>The above shell will exit immediately on error.  If it runs to
Note: See TracChangeset for help on using the changeset viewer.