On 12/4/06, Mug <[EMAIL PROTECTED]> wrote:

Say I have 2 modules ( below pseudo codes ) , which the first
package ( InitGlobal ) will be used through out the other project
modules. However, InitGlobal itself would relay on some other
modules, which the modules using InitGlobal too.


You can place the "special" packages in their own directory and point to it:

BEGIN {
       unshift (@INC, "/special");
       unshift (@INC, "/special/packages");
}

use strict;
use InitGlobal;

HTH/-Sx-
--
WC (Bill) Jones -- http://youve-reached-the.endoftheinternet.org/

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to