diff options
author | Chris Pickel | 2007-09-08 11:39:44 +0200 |
---|---|---|
committer | Lars Hjemli | 2007-09-08 11:53:40 +0200 |
commit | 898f5f89d3e2c6100f7e0ab6fc4a200b8fc75bb5 (patch) | |
tree | 43c06040109ad8f28ba98aa24feef56a81eda658 | |
parent | Makefile: add support for DESTDIR (diff) | |
download | cgit-898f5f89d3e2c6100f7e0ab6fc4a200b8fc75bb5.tar.gz cgit-898f5f89d3e2c6100f7e0ab6fc4a200b8fc75bb5.zip |
Make cgit honor CACHE_ROOT as defined in Makefile
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | shared.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile index d95a5a3..7857b8e 100644 --- a/Makefile +++ b/Makefile | |||
@@ -33,6 +33,7 @@ CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)' | |||
33 | CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"' | 33 | CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"' |
34 | CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"' | 34 | CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"' |
35 | CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"' | 35 | CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"' |
36 | CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"' | ||
36 | 37 | ||
37 | 38 | ||
38 | cgit: cgit.c $(OBJECTS) | 39 | cgit: cgit.c $(OBJECTS) |
diff --git a/shared.c b/shared.c index cd9d68d..1cd60a2 100644 --- a/shared.c +++ b/shared.c | |||
@@ -23,7 +23,7 @@ char *cgit_module_link = "./?repo=%s&page=commit&id=%s"; | |||
23 | char *cgit_agefile = "info/web/last-modified"; | 23 | char *cgit_agefile = "info/web/last-modified"; |
24 | char *cgit_virtual_root = NULL; | 24 | char *cgit_virtual_root = NULL; |
25 | char *cgit_script_name = CGIT_SCRIPT_NAME; | 25 | char *cgit_script_name = CGIT_SCRIPT_NAME; |
26 | char *cgit_cache_root = "/var/cache/cgit"; | 26 | char *cgit_cache_root = CGIT_CACHE_ROOT; |
27 | char *cgit_repo_group = NULL; | 27 | char *cgit_repo_group = NULL; |
28 | 28 | ||
29 | int cgit_nocache = 0; | 29 | int cgit_nocache = 0; |