package abc; use strict; use warnings; use File::Path (); ... sub import { my $caller = caller(); strict->import(); warnings->import(); { eval "package $caller; File::Path->import('mkpath');" } ... } 1;