Revision: 3561 http://trac.macosforge.org/projects/calendarserver/changeset/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: -------------- 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 ()
participants (1)
-
source_changes@macosforge.org