Skip to content

Commit

Permalink
Fix issue reported by Matt Pearson
Browse files Browse the repository at this point in the history
  • Loading branch information
anjohnson committed Oct 26, 2021
1 parent a662cae commit 1950a82
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions documentation/RELEASE_NOTES.md
Expand Up @@ -16,6 +16,10 @@ should also be read to understand what has changed since earlier releases.

<!-- Insert new items immediately below here ... -->

### Fix for `undefined` in configure/RELEASE files

Prevents `Use of uninitialized value` warnings from convertRelease.pl.

### Colorized Messages for errlog

Many internal error messages now emit ANSI escape sequences to highlight the
Expand Down
1 change: 1 addition & 0 deletions src/tools/EPICS/Release.pm
Expand Up @@ -67,6 +67,7 @@ sub readRelease {
my ($uvar) = m/^ undefine \s+ ($MVAR)/x;
if ($uvar ne '') {
delete $Rmacros->{$uvar};
@$Rapps = grep($_ ne $uvar, @$Rapps);
next;
}

Expand Down

0 comments on commit 1950a82

Please sign in to comment.