Stas Bekman
Tue, 28 Oct 2003 17:33:45 -0800
Carl Brewer wrote: [...]
Also what happens if you change
BEGIN { use constant APACHE_TEST_INSTALL => -e 'Apache-Test'; use lib './Apache-Test'; require 'install-pl' if APACHE_TEST_INSTALL; }
to:
BEGIN { use constant APACHE_TEST_INSTALL => -e 'Apache-Test';
I think this is the bit that isn't working. The constant isn't being set, so the -e 'Apache-Test' test is failing.
perl -lwe 'use constant A => -e "Apache-Test1"; print A ? "OK" : "NOT OK";' NOT OK perl -lwe 'use constant A => -e "Apache-Test"; print A ? "OK" : "NOT OK";' OK
This would be consistant with there being no such directory if you do a straight CVS checkout, rather than untar'ing a distribution and then using CVS updates. Is this something we need to fix in the CVS tree, or something?
__________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]