Changeset 53f291f for common


Ignore:
Timestamp:
10/16/2006 06:17:01 PM (18 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
2.3, 2.3.x, 2.4, ablfs, ablfs-more, legacy, new_features, trunk
Children:
e7655b2
Parents:
93d32cf
Message:

Using TRACKING_DIR for CUSTOM_TOOLS.

Location:
common
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • common/custom_pkgs

    r93d32cf r53f291f  
    2121mk_CUSTOM_TOOLS:
    2222        @\$(call echo_CHROOT_request)
    23         @ sudo mkdir -p /home/georgeb/TRIAL/var/lib/jhalfs/BLFS
     23        @ sudo mkdir -p ${BUILDDIR}${TRACKING_DIR}
    2424        @( sudo \$(CHROOT2) "cd \$(SCRIPT_ROOT) && make CUSTOM_TOOLS")
    2525        @touch \$@
     
    4949        @\$(call remove_build_dirs2,${PKG})
    5050        @touch \$@
    51         @touch /var/lib/jhalfs/BLFS/${PKG}-${PKG_VERSION}
     51        @touch ${TRACKING_DIR}/${PKG}-${PKG_VERSION}
    5252        @\$(call housekeeping)
    5353EOF
  • common/func_validate_configs.sh

    r93d32cf r53f291f  
    2828
    2929  local -r  blfs_tool_PARAM_LIST="BLFS_BRANCH_ID BLFS_ROOT BLFS_XML TRACKING_DIR DEP_LIBXML DEP_LIBXSLT DEP_TIDY DEP_UNZIP DEP_DBXML DEP_DBXSL DEP_LINKS DEP_SUDO DEP_WGET DEP_SVN DEP_GPM"
     30  local -r custom_tool_PARAM_LIST="TRACKING_DIR"
    3031
    3132  local -r ERROR_MSG_pt1='The variable \"${L_arrow}${config_param}${R_arrow}\" value ${L_arrow}${BOLD}${!config_param}${R_arrow} is invalid,'
     
    191192  fi
    192193
     194  if [[ "${CUSTOM_TOOLS}" = "y" ]] && [[ "${BLFS_TOOL}" = "n" ]]  ; then
     195    for config_param in ${custom_tool_PARAM_LIST}; do
     196      echo -e "`eval echo $PARAM_VALS`"
     197    done
     198  fi
     199
    193200  set -e
    194201  echo "${nl_}***${BOLD}${GREEN} ${PARAM_GROUP%%_*T} config parameters look good${OFF} ***${nl_}"
Note: See TracChangeset for help on using the changeset viewer.