Subject: | v-strings create warnings in perl 5.10 |
First, great module!
In perl 5.10, use warnings produces a warning when v-strings are used.
So the following is reported local::lib is used:
v-string in use/require non-portable at t.pl line 3.
The following small change fixes it:
-use 5.8.1;
+use 5.008001;
Thanks,
Mark