From cd8d8e689011bfb5a17fa1417deee33d0cc8518f Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Fri, 22 Sep 2017 14:29:43 -0500 Subject: [PATCH] ModuleDirs files don't need TOP any more --- src/tools/convertRelease.pl | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/tools/convertRelease.pl b/src/tools/convertRelease.pl index 0b2873bf6..556abd826 100644 --- a/src/tools/convertRelease.pl +++ b/src/tools/convertRelease.pl @@ -149,10 +149,8 @@ sub binDirs { return @path; } -# FIXME: Instead of using TOP/lib/perl, this should use INSTALL_LOCATION/lib/perl -# to cover cases with remote installation location sub moduleDirs { - my @deps = grep !m/^ (RULES | TEMPLATE_TOP) $/x, @apps; + my @deps = grep !m/^ (TOP | RULES | TEMPLATE_TOP) $/x, @apps; my @dirs = grep {-d $_} map { AbsPath("$macros{$_}/lib/perl") } @deps; unlink $outfile;