[Bioperl-guts-l] [15413] bioperl-live/trunk/Bio/Root/Utilities.pm: [bug 2737] \n* revert Utilities commit per bug report (doesn' t take links to non-PATH exes into consideration)
Christopher John Fields
cjfields at dev.open-bio.org
Wed Jan 21 08:16:30 EST 2009
Revision: 15413
Author: cjfields
Date: 2009-01-21 08:16:29 -0500 (Wed, 21 Jan 2009)
Log Message:
-----------
[bug 2737]\n* revert Utilities commit per bug report (doesn't take links to non-PATH exes into consideration)
Modified Paths:
--------------
bioperl-live/trunk/Bio/Root/Utilities.pm
Modified: bioperl-live/trunk/Bio/Root/Utilities.pm
===================================================================
--- bioperl-live/trunk/Bio/Root/Utilities.pm 2009-01-21 03:10:37 UTC (rev 15412)
+++ bioperl-live/trunk/Bio/Root/Utilities.pm 2009-01-21 13:16:29 UTC (rev 15413)
@@ -1229,7 +1229,7 @@
undef $exe;
my @exes;
foreach my $d (@bindirs) {
- push(@exes, "$d/$name") if -x "$d/$name" && !-l "$d/$name";
+ push(@exes, "$d/$name") if -x "$d/$name";
}
if (scalar @exes) {
$exe = $exes[0];
More information about the Bioperl-guts-l
mailing list