Forum .LRN Q&A: Re: Bulk Mail dependency not fulfilled

Collapse
Posted by Vinod Kurup on
Hi Peter, Looks like there's a bug in proc apm_dependency_provided_p in acs-tcl/tcl/apm-install-procs.tcl (line 109). Instead of using apm_package_version.version_name_greater, it checks the versions directly:
if { $dependency_version <= [lindex $prov 1] } {
which shortcuts the 'd' < 'a' precedence that we want. The same fix needs to be made a couple lines down as well.