Ignore:
Timestamp:
12/16/2021 12:50:33 PM (3 years ago)
Author:
Pierre Labastie <pierre.labastie@…>
Branches:
ablfs-more, legacy, trunk
Children:
7ae9774
Parents:
a6fbc65
Message:

Pass tracking file to gen_pkg_book

This is needed for managing -pass1 packages, since their version
can only be found in the tracking file (thanks to previous commit).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BLFS/gen_pkg_book.sh

    ra6fbc65 rb8e5cad  
    55set -e
    66
    7 TOPDIR=$1
     7TRACKFILE=$1
     8if test -z "$TRACKFILE"; then
     9  TRACKFILE=/var/lib/jhalfs/BLFS/instpkg.xml
     10fi
     11TOPDIR=$2
    812if test -z "$TOPDIR"; then
    913  TOPDIR=$(pwd)
    1014fi
    11 BLFS_FULL=$2
     15BLFS_FULL=$3
    1216if test -z "$BLFS_FULL"; then
    1317  BLFS_FULL=${TOPDIR}/blfs-xml/tmp/blfs-full.xml
    1418fi
    15 LFS_FULL=$3
     19LFS_FULL=$4
    1620if test -z "$LFS_FULL"; then
    1721  LFS_FULL=${TOPDIR}/lfs-xml/tmp/lfs-full.xml
Note: See TracChangeset for help on using the changeset viewer.