Changeset 7f4caf0


Ignore:
Timestamp:
Feb 18, 2009, 8:42:56 PM (15 years ago)
Author:
Jim Gifford <clfs@…>
Branches:
clfs-1.2, clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
Children:
52f035d
Parents:
f14cfdc
Message:

Bzip2 Multilib Update

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • BOOK/final-system/multilib/bzip2-64bit.xml

    rf14cfdc r7f4caf0  
    5656    xpointer="xpointer(//*[@os='g'])"/>
    5757
    58     <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
    59     href="../common/bzip2.xml"
    60     xpointer="xpointer(//*[@os='h'])"/>
     58<screen os="h"><userinput>make CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" PREFIX=/usr install</userinput></screen>
    6159
    6260    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
  • BOOK/introduction/common/changelog.xml

    rf14cfdc r7f4caf0  
    3636    </listitem>
    3737-->
     38
     39    <listitem>
     40      <para>February 18, 2009</para>
     41      <itemizedlist>
     42        <listitem>
     43          <para>[Jim] - Updated Bzip2 Multilib 64bit install. On some occasions the make command
     44          during an install will rebuild sources. Lets make sure it uses our specified options.</para>
     45        </listitem>
     46      </itemizedlist>
     47    </listitem>
    3848
    3949    <listitem>
  • scripts/patch/perl-patch.sh

    rf14cfdc r7f4caf0  
    2121fi
    2222
     23# Set Patch Number
     24#
     25cd /usr/src
     26wget http://svn.cross-lfs.org/svn/repos/cross-lfs/trunk/patches/ --no-remove-listing
     27PATCH_NUM=$(cat index.html | grep perl | grep "${VERSION}" | grep branch_update | cut -f2 -d'"' | cut -f1 -d'"'| cut -f4 -d- | cut -f1 -d. | tail -n 1)
     28PATCH_NUM=$(expr ${PATCH_NUM} + 1)
     29rm -f index.html
     30
    2331# Cleanup Directory
    2432#
     
    2836CURRENTDIR=$(pwd -P)
    2937
    30 # Get Current Updates from CVS
     38# Get Current Updates from GIT
    3139#
    3240cd /usr/src
    33 FIXEDVERSION=$(echo ${VERSION} | sed -e 's ..$  ')
    34 rsync -avz rsync://perl5.git.perl.org/APC/perl-${FIXEDVERSION}.x tmp
    35 cd tmp
    36 mv perl-${FIXEDVERSION}.x /usr/src/perl-${VERSION}
     41mkdir perl.git
     42cd perl.git
     43git clone git://perl5.git.perl.org/perl.git
    3744
    3845# Cleanup
Note: See TracChangeset for help on using the changeset viewer.