Ignore:
Timestamp:
Aug 15, 2009, 11:36:56 AM (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:
4648865
Parents:
842cd58
Message:

Added PPC patch. Fixed Patch Fetching Scripts.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • scripts/patch/binutils-patch.sh

    r842cd58 r29f6db3  
    3131#
    3232cd ~/tmp
    33 wget http://patches.cross-lfs.org/dev/ --no-remove-listing
    34 PATCH_NUM=$(cat index.html | grep binutils | grep "${SOURCEVERSION}" | grep branch_update | cut -f2 -d'"' | cut -f1 -d'"'| cut -f4 -d- | cut -f1 -d. | tail -n 1)
    35 PATCH_NUM=$(expr ${PATCH_NUM} + 1)
    36 PATCH_NUM2=$(cat index.html | grep binutils | grep "${SOURCEVERSION}" | grep fixes | cut -f2 -d'"' | cut -f1 -d'"'| cut -f4 -d- | cut -f1 -d. | tail -n 1)
    37 PATCH_NUM2=$(expr ${PATCH_NUM2} + 1)
     33wget http://svn.cross-lfs.org/svn/repos/patches/binutils/ --no-remove-listing
     34for num in $(seq 1 99); do
     35  PATCH_NUM=$(cat index.html | grep "${VERSION}" | grep branch_update-${num} | cut -f2 -d'"' | cut -f1 -d'"'| cut -f4 -d- | cut -f1 -d. | tail -n 1)
     36  if [ "${PATCH_NUM}" = "0" -a "${num}" = "1" ]; then
     37    PATCH_NUM=$(expr ${PATCH_NUM} + 1)
     38    break
     39  fi
     40  if [ "${PATCH_NUM}" != "${num}" ]; then
     41    PATCH_NUM=$(expr ${num})
     42    break
     43  fi
     44done
     45for num in $(seq 1 99); do
     46  PATCH_NUM2=$(cat index.html | grep "${SOURCEVERSION}" | grep fixes-${num} | cut -f2 -d'"' | cut -f1 -d'"'| cut -f4 -d- | cut -f1 -d. | tail -n 1)
     47  if [ "${PATCH_NUM2}" = "0" -a "${num}" = "1" ]; then
     48    PATCH_NUM2=$(expr ${PATCH_NUM2} + 1)
     49    break
     50  fi
     51  if [ "${PATCH_NUM2}" != "${num}" ]; then
     52    PATCH_NUM2=$(expr ${num})
     53    break
     54  fi
     55done
    3856rm -f index.html
    3957
Note: See TracChangeset for help on using the changeset viewer.