Subject: | do "eg/make_eg.pl" failed, '.' is no longer in @INC |
When running the makefile, I get the message:
C:\ALLEGR~1\.cpanm\work\1564606815.4616\Win32-GuiTest-1.63>perl Makefile.PL
do "eg/make_eg.pl" failed, '.' is no longer in @INC; did you mean do "./eg/make_eg.pl"? at Makefile.PL line 15.
I can work around it by running `perl -I. Makefile.PL` instead.
However, the real fix would be to change from
do 'eg/make_eg.pl';
to
do './eg/make_eg.pl';
When I make that change, Makefile.PL runs without difficulty.
I just saw there's a github repo, so I'll probably make a pull request in the near future