Changeset 591 for CMT/HEAD/mgr


Ignore:
Timestamp:
Nov 29, 2011, 10:07:38 AM (13 years ago)
Author:
rybkin
Message:

See C.L. 468

Location:
CMT/HEAD/mgr
Files:
3 edited

Legend:

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

    r561 r591  
    3434fi
    3535
    36 ld=`${CMTROOT}/mgr/cmt show macro_value shlibbuilder -tag=${tag}` || exit
    37 ldflags=`${CMTROOT}/mgr/cmt show macro_value shlibflags -tag=${tag}` || exit
    38 suffix=`${CMTROOT}/mgr/cmt show macro_value shlibsuffix -tag=${tag}` || exit
    39 libprefix=`${CMTROOT}/mgr/cmt show macro_value library_prefix -tag=${tag}` || exit
    40 libsuffix=`${CMTROOT}/mgr/cmt show macro_value library_suffix -tag=${tag}` || exit
     36[ -n "${ld:-}" ] || ld=`${CMTROOT}/mgr/cmt show macro_value shlibbuilder -tag=${tag}` || exit
     37[ -n "${ldflags+CMT}" ] || ldflags=`${CMTROOT}/mgr/cmt show macro_value shlibflags -tag=${tag}` || exit
     38[ -n "${suffix+CMT}" ] || suffix=`${CMTROOT}/mgr/cmt show macro_value shlibsuffix -tag=${tag}` || exit
     39[ -n "${libprefix+CMT}" ] || libprefix=`${CMTROOT}/mgr/cmt show macro_value library_prefix -tag=${tag}` || exit
     40[ -n "${libsuffix+CMT}" ] || libsuffix=`${CMTROOT}/mgr/cmt show macro_value library_suffix -tag=${tag}` || exit
    4141
    4242libname=${libprefix}${lib}${libsuffix}
  • CMT/HEAD/mgr/cmt_uninstall_action.sh

    r487 r591  
    9797
    9898  if test "${cmtpath}" = ""; then
    99     package=`cmt show macro_value package`
    100     cmtpath=`cmt show macro_value ${package}_cmtpath`
     99    if [ -n "${CMTDEBUG:-}" ]; then
     100      unset CMTDEBUG
     101      set -x
     102    fi
     103    package=`cmt show macro_value package` || exit
     104    cmtpath=`cmt show macro_value ${package}_cmtpath` || exit
    101105  fi
    102106
  • CMT/HEAD/mgr/fragments/library

    r502 r591  
    2929$(${CONSTITUENT}libname).$(shlibsuffix) :: $(${CONSTITUENT}lib) requirements $(use_requirements) $(${CONSTITUENT}stamps)
    3030        $(lib_echo) "shared library $@"
    31         $(lib_silent) if test "$(makecmd)"; then QUIET=; else QUIET=1; fi; QUIET=$${QUIET} bin=$(bin) $(make_shlib) "$(tags)" ${CONSTITUENT} $(${CONSTITUENT}_shlibflags)
     31        $(lib_silent) if test "$(makecmd)"; then QUIET=; else QUIET=1; fi; QUIET=$${QUIET} bin="$(bin)" ld="$(shlibbuilder)" ldflags="$(shlibflags)" suffix=$(shlibsuffix) libprefix=$(library_prefix) libsuffix=$(library_suffix) $(make_shlib) "$(tags)" ${CONSTITUENT} $(${CONSTITUENT}_shlibflags)
    3232
    3333$(${CONSTITUENT}shstamp) :: $(${CONSTITUENT}libname).$(shlibsuffix)
Note: See TracChangeset for help on using the changeset viewer.