Revision
3561
Author
wsanchez@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

Property Changed

Diff

Property changes: CalendarServer/trunk


Modified: svn:ignore

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

Modified: CalendarServer/trunk/run (3560 => 3561)


--- 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 ()