mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Bug fix for 3.x: unbreak drivers (e.g. the gif driver) using the %VAL(...)
F77 feature.
This commit is contained in:
parent
b18fa1219e
commit
596561ded7
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=21888
1 changed files with 2 additions and 1 deletions
|
@ -38,8 +38,9 @@ sub phase1 {
|
||||||
sub phase2 {
|
sub phase2 {
|
||||||
while (<>) {
|
while (<>) {
|
||||||
if (/(\s*)(\w*)(\s*=\s*)($ctxt)/) {
|
if (/(\s*)(\w*)(\s*=\s*)($ctxt)/) {
|
||||||
|
$p = $2;
|
||||||
s/$ctxt\(&/\(/;
|
s/$ctxt\(&/\(/;
|
||||||
$names[$count] = $2;
|
$names[$count] = $p;
|
||||||
$count++;
|
$count++;
|
||||||
print $_;
|
print $_;
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Reference in a new issue