diff options
| author | Lars Hjemli <hjemli@gmail.com> | 2007-05-15 00:48:31 +0200 | 
|---|---|---|
| committer | Lars Hjemli <hjemli@gmail.com> | 2007-05-15 00:48:31 +0200 | 
| commit | ea2831f1c826d92c0158474c2d07837ec2f9fd6c (patch) | |
| tree | e8d6a89bf0f50835f9c86dd642e7906e1d050df7 /Makefile | |
| parent | 6fb7d09fea94b3dd6932469283358cb24f1e7e29 (diff) | |
Don't hardcode urls when SCRIPT_NAME is available
Also, let the makefile define the name of the installed cgi and
use that definition as a default value for cgit_script_name variable.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 | 
1 files changed, 3 insertions, 1 deletions
| @@ -5,6 +5,7 @@ prefix = /var/www/htdocs/cgit  SHA1_HEADER = <openssl/sha.h>  CACHE_ROOT = /var/cache/cgit  CGIT_CONFIG = /etc/cgitrc +CGIT_SCRIPT_NAME = cgit.cgi  EXTLIBS = git/libgit.a git/xdiff/lib.a -lz -lcrypto  OBJECTS = shared.o cache.o parsing.o html.o ui-shared.o ui-repolist.o \ @@ -21,6 +22,7 @@ CFLAGS += -Igit  CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)'  CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"'  CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"' +CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"'  # @@ -56,7 +58,7 @@ git/libgit.a:  #  install: all clean-cache  	mkdir -p $(prefix) -	install cgit $(prefix)/cgit.cgi +	install cgit $(prefix)/$(CGIT_SCRIPT_NAME)  	install cgit.css $(prefix)/cgit.css  	install add.png del.png $(prefix)/ | 
