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

Góra strony
Delete this message
Reply to this message
Autor: Heiko Schlittermann
Data:  
Dla: exim-dev
Temat: 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