Changeset 69f2b81 for BLFS


Ignore:
Timestamp:
08/12/2007 07:16:47 PM (17 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
2.3, 2.4, ablfs, ablfs-more, legacy, new_features, trunk
Children:
e6a616d
Parents:
aac025d
Message:

BLFS: Typo fix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BLFS/gen_config.sh

    raac025d r69f2b81  
    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.