Changeset e75665c


Ignore:
Timestamp:
08/12/2007 07:17:36 PM (17 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
2.3.x
Children:
a80a1d0
Parents:
373f062
Message:

Merged r3458 from trunk.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BLFS/gen_config.sh

    r373f062 re75665c  
    5252    fi
    5353      # Do not include installed packages newer than the book ones
    54     if [ -n "${PKG_VER}" ] && [[ "x${PKG_VER}" = "x${INST_VER}" ]]; then
     54    if [ -n "${PKG_VER}" ] && [[ "x${PKG_VER}" < "x${INST_VER}" ]]; then
    5555      continue
    5656    fi
     
    8484         fi
    8585          # Do not include installed packages newer than the book ones
    86         if [ -n "${PKG_VER}" ] && [[ "x${PKG_VER}" = "x${INST_VER}" ]]; then
    87           continue
    88         fi
     86         if [ -n "${PKG_VER}" ] && [[ "x${PKG_VER}" < "x${INST_VER}" ]]; then
     87           continue
     88         fi
    8989           # Set installed version for updated meta-packages components
    9090         [ -n "${INST_VER}" ] && INST_STRING="[installed ${INST_VER}]"
     
    127127  fi
    128128    # Do not include installed packages newer than the book ones
    129   if [ -n "${PKG_VER}" ] && [[ "x${PKG_VER}" = "x${INST_VER}" ]]; then
     129  if [ -n "${PKG_VER}" ] && [[ "x${PKG_VER}" < "x${INST_VER}" ]]; then
    130130    continue
    131131  fi
Note: See TracChangeset for help on using the changeset viewer.