[Rt-commit] r2227 - in rt/branches/3.4-RELEASE: . bin

jesse at bestpractical.com jesse at bestpractical.com
Sun Feb 13 22:39:38 EST 2005


Author: jesse
Date: Sun Feb 13 22:39:37 2005
New Revision: 2227

Modified:
   rt/branches/3.4-RELEASE/   (props changed)
   rt/branches/3.4-RELEASE/bin/rt-crontool.in
Log:
 r4691 at hualien:  jesse | 2005-02-14T03:37:15.362723Z
 The crontool was using local and system libs in the wrong order
 


Modified: rt/branches/3.4-RELEASE/bin/rt-crontool.in
==============================================================================
--- rt/branches/3.4-RELEASE/bin/rt-crontool.in	(original)
+++ rt/branches/3.4-RELEASE/bin/rt-crontool.in	Sun Feb 13 22:39:37 2005
@@ -47,7 +47,7 @@
 use strict;
 use Carp;
 
-use lib ("@RT_LIB_PATH@", "@LOCAL_LIB_PATH@");
+use lib ("@LOCAL_LIB_PATH@", "@RT_LIB_PATH@");
 
 package RT;
 


More information about the Rt-commit mailing list