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

Top Pagina
Delete this message
Reply to this message
Auteur: Heiko Schlittermann
Datum:  
Aan: exim-dev
Onderwerp: 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