From e20502fb4cd2423d2c142a9581d8a339f1b2254d Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Mon, 17 May 2021 12:12:19 -0500 Subject: [PATCH] Remove EPICS_BASE check from releaseTops() --- src/tools/convertRelease.pl | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/tools/convertRelease.pl b/src/tools/convertRelease.pl index d2fa2dc87..bc20bc69c 100644 --- a/src/tools/convertRelease.pl +++ b/src/tools/convertRelease.pl @@ -113,9 +113,6 @@ EOF # sub releaseTops { my @includes = grep !m/^ (TOP | TEMPLATE_TOP) $/x, @apps; - if (!@includes) { - die "No variables defined in RELEASE*s"; - } print join(' ', @includes), "\n"; }