Karl Berry wrote:
> - foreach my $dir (reverse split /:/, $ENV{"ACLOCAL_PATH"})
> + my $sep = $^O eq 'os2' ? ';' : ':';
> + foreach my $dir (reverse split /$sep/, $ENV{"ACLOCAL_PATH"})
>
> Thanks for the report. I added a check for Windows and committed it.
> --best, karl.
>
Th
Hi Collin,
In the yacc test I see warnings like this:
main.c:4:10: error: implicit declaration of function 'yyparse'
[-Wimplicit-function-declaration]
4 | return yyparse ();
| ^~~
and some for yylex which is declared, but with an empty parameter list
- foreach my $dir (reverse split /:/, $ENV{"ACLOCAL_PATH"})
+ my $sep = $^O eq 'os2' ? ';' : ':';
+ foreach my $dir (reverse split /$sep/, $ENV{"ACLOCAL_PATH"})
Thanks for the report. I added a check for Windows and committed it.
--best, karl.
--