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

Top Page
Delete this message
Reply to this message
Author: Heiko Schlittermann
Date:  
To: exim-dev
Subject: 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