Changeset 7b7b5e9


Ignore:
Timestamp:
04/02/2020 09:56:51 AM (4 years ago)
Author:
Pierre Labastie <pierre@…>
Branches:
ablfs-more, legacy, trunk
Children:
dd7e0f67
Parents:
0a577f5
Message:

Various fixes for ICA

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • LFS/master.sh

    r0a577f5 r7b7b5e9  
    226226# but we do it to have a similar structure to chapter 5 (we may merge all
    227227# those functions at some point).
    228   Makefile_target=runasroot
     228  case "$N" in
     229     -build*) Makefile_target=chapter6   ;;
     230           *) Makefile_target=runasroot  ;;
     231  esac
    229232
    230233# Start loop
     
    318321    PREV=${this_script}
    319322    # Set system_build envar for iteration targets
    320     system_build=$chapter6
     323    if [ -z "$N" ]; then
     324      system_build="$system_build $this_script"
     325    fi
    321326  done # end for file in chapter06/*
     327  if [ -n "$N" ]; then
     328    system_build="$chapter6"
     329  fi
    322330}
    323331
  • common/libs/func_compare.sh

    r0a577f5 r7b7b5e9  
    9797            mv -f \$\$file \`echo \$\$file | sed -e 's,-$build,,'\` ; \\
    9898          done ; \\
    99         fi ;
     99        fi
    100100        @cd /\$(SCRIPT_ROOT)
    101101        @if [ -d test-logs ] ; then \\
  • extras/do_ica_prep

    r0a577f5 r7b7b5e9  
    4444  # archive with a dir of the same name and extract the object
    4545  # files from the archive into this dir. Despite their names,
    46   # libieee.a & libmcheck.a are not actual ar archives.
     46  # libm.a & libmcheck.a are not actual ar archives.
    4747  echo -n "Extracting object files from \".a\" files in ${CMP_DIR}... "
    48   L=$(find $CMP_DIR -name '*.a' ! -name 'libieee.a' ! -name 'libmcheck.a')
     48  L=$(find $CMP_DIR -name '*.a' ! -name 'libm.a' ! -name 'libmcheck.a')
    4949  for F in $L; do
    5050    mv $F ${F}.XX
Note: See TracChangeset for help on using the changeset viewer.