Title: [174849] trunk/Websites/bugs.webkit.org/mod_perl.pl
Revision
174849
Author
[email protected]
Date
2014-10-17 16:19:32 -0700 (Fri, 17 Oct 2014)

Log Message

Add lib directory to mod_perl search path

mod_perl.pl:  Add lib directory to mod_perl search path.  I
accidentally installed updated Perl modules under the Bugzilla
root directory instead of in the system, so this path needed to
be added to make sure up-to-date modules were used.  It may be
removed once Perl modules are updated on the system.

Modified Paths

Diff

Modified: trunk/Websites/bugs.webkit.org/mod_perl.pl (174848 => 174849)


--- trunk/Websites/bugs.webkit.org/mod_perl.pl	2014-10-17 23:15:51 UTC (rev 174848)
+++ trunk/Websites/bugs.webkit.org/mod_perl.pl	2014-10-17 23:19:32 UTC (rev 174849)
@@ -15,7 +15,7 @@
 #
 # Contributor(s): Max Kanat-Alexander <[email protected]>
 
-use lib qw(/var/www/html); # WEBKIT_CHANGES
+use lib qw(/var/www/html /var/www/html/lib); # WEBKIT_CHANGES
 package Bugzilla::ModPerl;
 use strict;
 use warnings;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to