Update of /cvsroot/freevo/freevo/src
In directory sc8-pr-cvs1:/tmp/cvs-serv7281

Modified Files:
        config.py 
Log Message:
OVERLAY_DIRS needs specific format for speedup

Index: config.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/config.py,v
retrieving revision 1.83
retrieving revision 1.84
diff -C2 -d -r1.83 -r1.84
*** config.py   30 Dec 2003 15:27:47 -0000      1.83
--- config.py   30 Dec 2003 22:31:44 -0000      1.84
***************
*** 23,26 ****
--- 23,29 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.84  2003/12/30 22:31:44  dischi
+ # OVERLAY_DIRS needs specific format for speedup
+ #
  # Revision 1.83  2003/12/30 15:27:47  dischi
  # reset OVERLAY_DIR usage if OVERLAY_DIR is not set
***************
*** 874,877 ****
--- 877,886 ----
      OVERLAY_DIR_STORE_MMPYTHON_DATA = False
  
+ # Make sure OVERLAY_DIR doesn't ends with a slash
+ # With that, we don't need to use os.path.join, normal string
+ # concat is much faster
+ if OVERLAY_DIR and OVERLAY_DIR.endswith('/'):
+     OVERLAY_DIR = OVERLAY_DIR[:-1]
+     
  #
  # delete LD_PRELOAD for all helpers, main.py does it after




-------------------------------------------------------
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to