Admin/init_components
author wenzelm
Wed, 27 Jun 2012 17:36:46 +0200
changeset 48160 ac561771abdb
parent 48154 2709937c7430
child 48166 1bee47c0c278
permissions -rw-r--r--
merged

# -*- shell-script -*- :mode=shellscript:
#
# Author: Florian Haftmann, TU Muenchen
#
# init_components - bash source script to initialize components
# as specified in the Admin directory

function init_component_liberal
{
  local LOCATION="$1"
  if [[ -d "${LOCATION}" ]]
  then
    init_component "${LOCATION}"
  else
    echo "Warning: no component found in ${LOCATION}" >&2
  fi
}

for COMPONENTS_FILE in "${ISABELLE_HOME}/Admin/components" "${ISABELLE_HOME}/Admin/components.${ML_PLATFORM}"
do
  while { unset REPLY; read -r; test "$?" = 0 -o -n "${REPLY}"; }
  do
    case "${REPLY}" in
      \#* | "") ;;
      /*) init_component_liberal "${REPLY}" ;;
      *) init_component_liberal "${COMPONENT}/${REPLY}" ;;
    esac
  done < "${COMPONENTS_FILE}"
done