From: Martin Stromberg Message-Id: <200007061036.MAA12463@lws256.lu.erisoft.se> Subject: Re: DJGPP problem executing a script To: djgpp-workers AT delorie DOT com Date: Thu, 6 Jul 2000 12:36:25 +0200 (MET DST) In-Reply-To: from "Eli Zaretskii" at Jul 04, 2000 04:02:46 PM X-Mailer: ELM [version 2.5 PL3] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Reply-To: djgpp-workers AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > > It's saying where perl should look for its modules. Like the include > > and lib directories for C. What's strange is that bin isn't usually in > > the @INC variable. > > Yes, but how does Perl compute the value of @INC? I'm trying to > understand where did those backslashes come from? 1. They are compiled in when building perl. 2. You can add more directories with the -I option to perl. These goes in front of the compiled in ones. 3. You can change the variable in your perl program. Right, MartinS