all repos — cgit @ 898f5f89d3e2c6100f7e0ab6fc4a200b8fc75bb5

a hyperfast web frontend for git written in c

Make cgit honor CACHE_ROOT as defined in Makefile

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Chris Pickel sfiera@macports.org
Sat, 08 Sep 2007 11:39:44 +0200
commit

898f5f89d3e2c6100f7e0ab6fc4a200b8fc75bb5

parent

97ded7c1c37078d34c0213d72777fdff3b6aebda

2 files changed, 2 insertions(+), 1 deletions(-)

jump to
M MakefileMakefile

@@ -33,6 +33,7 @@ CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)'

CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"' CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"' CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"' +CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"' cgit: cgit.c $(OBJECTS)
M shared.cshared.c

@@ -23,7 +23,7 @@ char *cgit_module_link = "./?repo=%s&page=commit&id=%s";

char *cgit_agefile = "info/web/last-modified"; char *cgit_virtual_root = NULL; char *cgit_script_name = CGIT_SCRIPT_NAME; -char *cgit_cache_root = "/var/cache/cgit"; +char *cgit_cache_root = CGIT_CACHE_ROOT; char *cgit_repo_group = NULL; int cgit_nocache = 0;