On 10/20/2016 08:43 PM, Todd Rinaldo via RT wrote: > On Sun Aug 14 01:35:18 2016, hmbrand wrote: >> just took a snippet, but it should never be set to '' >> >> The default should be 'undef' or 'define', not '' >> ... *snip* > Bump. > > As I understand things per our discussion at YAPC::EU, this patch should be ready for merge but requires a wave of the metaconfig wand once merged. > > I've also rebased on blead and removed some of the things Father Chrysostomos was worried about in the final commit. While we're at it, mst also noticed another issue: "do" doesn't work on current directory, as one might expect, but relative to @INC. $ echo "print 'hello'" > eg.pl ; perl -le 'do "eg.pl";' hello $ echo "print 'hello'" > eg.pl ; perl -le 'pop @INC if $INC[-1] eq "."; do "eg.pl";' (no output) However, you can still do: $ echo "print 'hello'" > eg.pl ; perl -le 'pop @INC if $INC[-1] eq "."; do "./eg.pl";' helloThread Previous