in reply to Devel::TraceUse bizarreness
I assume Devel:TraceUse is placing that code ref in @INC. If so, I'm guessing Devel::TraceUse needs to be loaded after all modifications to @INC have been made. If so, the first snippet below will exhibit the problem, but not the latter.
andperl -d:TraceUse -Mlib=my-lib -e'use Fcntl'
perl -Mlib=my-lib -d:TraceUse -e'use Fcntl'
I can't verify this because the module fails its tests.
|
|---|