Subject: | Makefile.PL contains a non-portable path |
Under Windows XP, after the command:
catalyst FooBar
The file Makefile.PL of the newly created FooBar app contains the
following line:
all_from 'lib\FooBar.pm';
If this app will be deployed to another OS, say Linux, the program
Makefile.PL won't run because that path cannot be found.
That line should be:
all_from 'lib/FooBar.pm';