Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Message-ID: <3FBDF54F.2080808@ThePierianSpring.org> Date: Fri, 21 Nov 2003 06:21:51 -0500 From: "Randy W. Sims" User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.6a) Gecko/20031030 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Nick Ing-Simmons CC: cygwin AT cygwin DOT com, perl5-porters AT perl DOT org, module-build-general AT lists DOT sourceforge DOT net Subject: Re: Cwd::cwd() bug??? on Cygwin References: <3FAF853D DOT 4000202 AT urth DOT org> <3FB00F47 DOT 10400 AT ThePierianSpring DOT org> < 3FB0ACC8 DOT 6030402 AT urth DOT org> <3FB30BB3 DOT 10405 AT ThePierianSpring DOT org> < 3FB50640 DOT 2010908 AT urth DOT org> <3FB55A73 DOT 5060806 AT ThePierianSpring DOT org> < 3FB64CB5 DOT 4060802 AT ThePierianSpring DOT org> <3FBD695A DOT 9020307 AT ThePierianSpring .org> <20031121110334 DOT 3098 DOT 7 AT llama DOT elixent DOT com> In-Reply-To: <20031121110334.3098.7@llama.elixent.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Nick Ing-Simmons wrote: > Randy W. Sims writes: > >>>sub cwd { >>> require Cwd; >>> Cwd::cwd; > > > If you made that > Cwd::cwd(); > > it would work. nope. I already tried that. >>>} >>> >>>1; >>>-----><8----- >>> >>>-----><8----- >>># test.pl >>>package MyModule; >>>use Module; >>>use base 'Module'; >>>use Cwd; > > > If you moved that above the use Module line then when Module.pm > was compiled it would know Cwd::cwd was a function. Tried that too. Removing it does work though, but that's not a solution; it's not reasonable to tell clients that subclass your library not to 'use Cwd'. I'm having a hard time grasping the order in which perl is interpreting this. What is desired is that $p->cwd() call Module::cwd() which should then forward the call to Cwd::cwd(). But no matter how I rearrange things I can't coax the behavior I want. I'm missing something simple here; I know it... >>>package main; >>>MyModule->new; >>>-----><8----- >>> -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/