Subject: | Problem returning dirnames containing spaces |
When the dirname contains spaces, it is treated as two dirs because of
replacing token 'list' with the raw list of found directories.
I attached the quick'n'dirty patch that works for me.
Subject: | spaces.patch |
343c343
< use lib qw( list ) ;
---
> use lib ( list ) ;
351c351
< splice @code, 7, 1, @libz;
---
> splice @code, 7, 1, map("'$_'", @libz);