[CalendarServer-changes] [3561] CalendarServer/trunk

source_changes at macosforge.org source_changes at macosforge.org
Fri Dec 19 15:40:27 PST 2008


Revision: 3561
          http://trac.macosforge.org/projects/calendarserver/changeset/3561
Author:   wsanchez at apple.com
Date:     2008-12-19 15:40:27 -0800 (Fri, 19 Dec 2008)
Log Message:
-----------
Cache dependencies by default, in source tree.

Modified Paths:
--------------
    CalendarServer/trunk/run

Property Changed:
----------------
    CalendarServer/trunk/


Property changes on: CalendarServer/trunk
___________________________________________________________________
Modified: svn:ignore
   - *.tgz
data
logs
build
*.pyc
*.pyo

   + .dependencies
*.tgz
data
logs
build
*.pyc
*.pyo


Modified: CalendarServer/trunk/run
===================================================================
--- CalendarServer/trunk/run	2008-12-19 20:26:58 UTC (rev 3560)
+++ CalendarServer/trunk/run	2008-12-19 23:40:27 UTC (rev 3561)
@@ -42,14 +42,10 @@
       profile="";
       reactor="";
 
-if [ "${CALENDARSERVER_CACHE_DEPS-__NO__}" == "__NO__" ]; then
-  cache_deps="";
+if [ -z "${CALENDARSERVER_CACHE_DEPS-}" ]; then
+  cache_deps="${wd}/.dependencies";
 else
-  if [ -z "${CALENDARSERVER_CACHE_DEPS}" ]; then
-    cache_deps="${HOME}/.calendarserver_deps";
-  else
-    cache_deps="${CALENDARSERVER_CACHE_DEPS}";
-  fi;
+  cache_deps="${CALENDARSERVER_CACHE_DEPS}";
 fi;
 
 usage ()
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20081219/07696ebc/attachment.html>


More information about the calendarserver-changes mailing list