stas 2002/12/14 09:29:34
Modified: lib/Apache Build.pm
. Changes
Log:
When installing the mod_perl shared object, first need to check
whether the directory 'modules' already exists, and create it if not.
Submitted by: Randy Kobes <[EMAIL PROTECTED]>
Reviewed by: stas
Revision Changes Path
1.109 +3 -0 modperl-2.0/lib/Apache/Build.pm
Index: Build.pm
===================================================================
RCS file: /home/cvs/modperl-2.0/lib/Apache/Build.pm,v
retrieving revision 1.108
retrieving revision 1.109
diff -u -r1.108 -r1.109
--- Build.pm 28 Nov 2002 16:31:36 -0000 1.108
+++ Build.pm 14 Dec 2002 17:29:34 -0000 1.109
@@ -1057,6 +1057,9 @@
lib: $(MODPERL_LIB)
install:
+ $(MODPERL_PERLPATH) -e "exit ! -d qq{$(MODPERL_AP_LIBEXECDIR)}" || \
+ $(MODPERL_PERLPATH) -MExtUtils::Command \
+ -e mkpath $(MODPERL_AP_LIBEXECDIR)
$(MODPERL_TEST_F) $(MODPERL_LIB_DSO) && \
$(MODPERL_CP) $(MODPERL_LIB_DSO) $(MODPERL_AP_LIBEXECDIR)
1.81 +4 -0 modperl-2.0/Changes
Index: Changes
===================================================================
RCS file: /home/cvs/modperl-2.0/Changes,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- Changes 13 Dec 2002 11:12:35 -0000 1.80
+++ Changes 14 Dec 2002 17:29:34 -0000 1.81
@@ -10,6 +10,10 @@
=item 1.99_08-dev
+When installing the mod_perl shared object, first need to check
+whether the directory 'modules' already exists, and create it if not.
+[Randy Kobes <[EMAIL PROTECTED]>]
+
Add a capability to tune the test configuration sections ordering
in Apache::TestConfigPerl [Stas Bekman]