Changeset 442 for CMT/HEAD/mgr


Ignore:
Timestamp:
Feb 16, 2008, 1:29:38 PM (16 years ago)
Author:
rybkin
Message:

See C.L. 346

Location:
CMT/HEAD/mgr
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • CMT/HEAD/mgr/cmt_install_action.sh

    r441 r442  
    135135fi
    136136
    137 echo "${CMTMSGHDR}" "Installing file ${file_name} into ${install_dir}"
    138137if test -L ${dest_file_path} -o -f ${dest_file_path}; then
    139138    /bin/rm -f ${dest_file_path}
     
    144143fi
    145144
     145if test "${cmtmsg}"; then
     146echo "${CMTMSGHDR}" "installing file ${file_name} into ${install_dir}"
     147fi
     148if test "${makecmd}"; then set -v; fi
    146149eval ${install_command} ${full_source_name} ${dest_file_path}
    147150echo ${full_source_name} >${ref_file}
     151if test "${makecmd}"; then set +v; fi
  • CMT/HEAD/mgr/cmt_make_shlib.sh

    r441 r442  
    3636
    3737if test `uname` = "Linux" ; then
     38if test "${cmtmsg}"; then
    3839  echo "${CMTMSGHDR}" "BUILDING SHARED LIBRARY ${lib}"
     40fi
    3941# ATTEMPT 2: temp for sharedlin force
    4042#   cp lib${lib}.a lib${lib}.so
  • CMT/HEAD/mgr/cmt_uninstall_action.sh

    r441 r442  
    123123
    124124if test -d ${dest_file_path}; then
    125   echo "${CMTMSGHDR}" Removing directory ${file_name} from ${install_dir}
     125if test "${cmtmsg}"; then
     126  echo "${CMTMSGHDR}" removing directory ${file_name} from ${install_dir}
     127fi
     128if test "${makecmd}"; then set -v; fi
    126129  /bin/rm -rf ${dest_file_path}
     130if test "${makecmd}"; then set +v; fi
    127131elif test -f ${dest_file_path}; then
    128   echo "${CMTMSGHDR}" Removing file ${file_name} from ${install_dir}
     132if test "${cmtmsg}"; then
     133  echo "${CMTMSGHDR}" removing file ${file_name} from ${install_dir}
     134fi
     135if test "${makecmd}"; then set -v; fi
    129136  /bin/rm -f ${dest_file_path}
     137if test "${makecmd}"; then set +v; fi
    130138fi
    131139
    132140if test -f ${ref_file}; then
     141if test "${makecmd}"; then set -v; fi
    133142  /bin/rm -f ${ref_file}
     143if test "${makecmd}"; then set +v; fi
    134144fi
  • CMT/HEAD/mgr/fragments/library

    r441 r442  
    55
    66$(${CONSTITUENT}lib) :: ${OBJS}
    7         $(lib_echo) "library $@"
     7        $(lib_echo) "static library $@"
    88        $(lib_silent) cd $(bin); \
    99          $(ar) $(${CONSTITUENT}lib) $?
     
    2828
    2929$(${CONSTITUENT}libname).$(shlibsuffix) :: $(${CONSTITUENT}lib) requirements $(use_requirements) $(${CONSTITUENT}stamps)
    30         $(lib_silent) cd $(bin); QUIET=$(QUIET); $(make_shlib) "$(tags)" ${CONSTITUENT} $(${CONSTITUENT}_shlibflags)
     30        $(lib_echo) "shared library $@"
     31        $(lib_silent) cd $(bin); if test "$(makecmd)"; then QUIET=; else QUIET=1; fi; QUIET=$${QUIET} $(make_shlib) "$(tags)" ${CONSTITUENT} $(${CONSTITUENT}_shlibflags)
    3132
    3233$(${CONSTITUENT}shstamp) :: $(${CONSTITUENT}libname).$(shlibsuffix)
Note: See TracChangeset for help on using the changeset viewer.