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

Inizio della pagina
Delete this message
Reply to this message
Autore: Heiko Schlittermann
Data:  
To: exim-dev
Oggetto: 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