Changes between Version 1 and Version 2 of Xorg7ProtocolHeaders


Ignore:
Timestamp:
05/15/2006 04:51:05 AM (18 years ago)
Author:
DJ Lucas
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Xorg7ProtocolHeaders

    v1 v2  
    33 * Automated Build Script
    44{{{
    5 
    6 some stuff goes here
    7 
     5bash -e
     6for package in $(cat ../wgetlist.wget)
     7do
     8  packagedir=$(echo $package | sed 's/.tar.bz2//')
     9  tar -xf $package
     10  cd $packagedir
     11  ./configure $XORG_CONFIG
     12  make install
     13  cd ..
     14  rm -rf $packagedir
     15  rm -f $package
     16done 2>&1 | tee -a ../xorg-compile.log
    817}}}