Re: [exim-dev] Popping '.' from @INC

Pàgina inicial
Delete this message
Reply to this message
Autor: Heiko Schlittermann
Data:  
A: exim-dev
Assumpte: Re: [exim-dev] Popping '.' from @INC
Heiko Schlittermann <hs@???> (Di 14 Feb 2017 18:03:25 CET):

> So better approach:
>
>     BEGIN {
>         @INC = grep { !/^\// } @INC;
>     }


Ohmmmm

     BEGIN {
         @INC = grep { /^\// } @INC;
     }


But not compatible with Win32, is it?

--
Heiko