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