Changeset fbb6b78


Ignore:
Timestamp:
09/12/2005 06:23:41 PM (19 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
0.2, 1.0, 2.3, 2.3.x, 2.4, ablfs, ablfs-more, legacy, new_features, trunk
Children:
557fe91, 903abce
Parents:
9e406b5
Message:

Fixed a typo in my name.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • jhalfs

    r9e406b5 rfbb6b78  
    1 #!/bin/sh 
     1#!/bin/sh
    22
    33version="
     
    113113        exit 1"
    114114  cd $JHALFSDIR
    115  
     115
    116116  # Test to make sure the LFS version is set
    117117  if [ -z $LFSVRS ] ; then LFSVRS=development ; fi
     
    132132        fi
    133133  else
    134         if [ $LFSVRS = development ] ; then 
     134        if [ $LFSVRS = development ] ; then
    135135                svn co $SVN/LFS/trunk/BOOK lfs-$LFSVRS >>$JHALFSDIR/$LOG 2>&1
    136136        else
     
    152152  echo -n "Extracting commands... "
    153153
    154   # Use Maneul's stylesheet to dump the commands in text form from the LFS book.
     154  # Use Manuel's stylesheet to dump the commands in text form from the LFS book.
    155155  xsltproc -v --nonet --xinclude -o ./commands/ \
    156156  lfs-$LFSVRS/stylesheets/dump-commands.xsl lfs-$LFSVRS/index.xml \
     
    237237  for i in `cat $JHALFSDIR/packages` ; do
    238238    PKG=`echo $i | sed 's/-version.*//'`
    239    
     239
    240240    # Someone used some silly entities right next to the valid package entities.
    241241    if [ "$PKG" = "expect-lib" -o "$PKG" = "linux-dl" ] ; then continue ; fi
     
    251251        PATCH=`echo $patch | sed 's@&'$PKG'-version;@'$VRS'@'`
    252252        download $PKG $PATCH
    253     done       
     253    done
    254254  done
    255255}
     
    258258  echo -n "Creating Makefile... "
    259259  cd $JHALFSDIR/commands
    260  
     260
    261261  # Start with a clean Makefile.tmp file
    262262  >$MKFILE.tmp
     
    266266        # of the targets in the Makefile
    267267        list="$list $i"
    268        
     268
    269269        # Grab the name of the target (minus the -pass1 or -pass2 in the case of gcc
    270270        # and binutils in chapter 5)
     
    307307  sed -i -e 's|\$\$LFS|\$(LFS)|' -e '/^\tcat/,/^\tEOF/s/ \&\& \\//' $MKFILE.tmp
    308308
    309   # Stick a variable and some defines at the top of the real makefile   
     309  # Stick a variable and some defines at the top of the real makefile
    310310  echo "export SRC := /sources" > $MKFILE
    311311  echo "export LFS := $BUILDDIR" >> $MKFILE
Note: See TracChangeset for help on using the changeset viewer.