[rt-commit] [svn] r584 - in rt/branches: . rt-3.3 rt-3.3/etc

autrijus at fsck.com autrijus at fsck.com
Tue Mar 16 14:07:51 EST 2004


Author: autrijus
Date: Tue Mar 16 14:07:50 2004
New Revision: 584

Modified:
   rt/branches/   (props changed)
   rt/branches/rt-3.3/Makefile.in
   rt/branches/rt-3.3/etc/RT_Config.pm.in
Log:
* it is possible that the DESTDIR is the current directory.
* also, hint on how to use MasonX::Profiler more concisely.


Modified: rt/branches/rt-3.3/Makefile.in
==============================================================================
--- rt/branches/rt-3.3/Makefile.in	(original)
+++ rt/branches/rt-3.3/Makefile.in	Tue Mar 16 14:07:50 2004
@@ -304,7 +304,7 @@
 
 config-install:
 	mkdir -p $(DESTDIR)/$(CONFIG_FILE_PATH)	
-	cp etc/RT_Config.pm $(DESTDIR)/$(CONFIG_FILE)
+	-cp etc/RT_Config.pm $(DESTDIR)/$(CONFIG_FILE)
 	[ -f $(DESTDIR)/$(SITE_CONFIG_FILE) ] || cp etc/RT_SiteConfig.pm $(DESTDIR)/$(SITE_CONFIG_FILE) 
 
 	chgrp $(RTGROUP) $(DESTDIR)/$(CONFIG_FILE)

Modified: rt/branches/rt-3.3/etc/RT_Config.pm.in
==============================================================================
--- rt/branches/rt-3.3/etc/RT_Config.pm.in	(original)
+++ rt/branches/rt-3.3/etc/RT_Config.pm.in	Tue Mar 16 14:07:50 2004
@@ -334,8 +334,9 @@
 
 # @MasonParameters is the list of parameters for the constructor of
 # HTML::Mason's Apache or CGI Handler.  This is normally only useful
-# for debugging, eg. profiling individual components with
-#     (preamble => 'my $p = MasonX::Profiler->new($m, $r);');
+# for debugging, eg. profiling individual components with:
+#     use MasonX::Profiler; # available on CPAN
+#     @MasonParameters = (preamble => 'my $p = MasonX::Profiler->new($m, $r);');
 
 @MasonParameters = () unless (@MasonParameters);
 



More information about the Rt-commit mailing list