From: Gerrit Pape Date: Sat, 5 Apr 2008 16:37:18 +0000 (+0000) Subject: gitweb: fallback to system-wide config file (fixup) X-Git-Url: http://pileus.org/git/?a=commitdiff_plain;h=26ffcb7690139dd53f5deb4f875895f22bebee4f;p=~andy%2Fgit gitweb: fallback to system-wide config file (fixup) The earlier one did not correctly propagate GITWEB_CONFIG_SYSTEM from Makefile to generated gitweb.cgi script. Signed-off-by: Gerrit Pape Signed-off-by: Junio C Hamano --- diff --git a/Makefile b/Makefile index a88acf6ef..78b773862 100644 --- a/Makefile +++ b/Makefile @@ -1035,6 +1035,7 @@ gitweb/gitweb.cgi: gitweb/gitweb.perl -e 's|++GIT_VERSION++|$(GIT_VERSION)|g' \ -e 's|++GIT_BINDIR++|$(bindir)|g' \ -e 's|++GITWEB_CONFIG++|$(GITWEB_CONFIG)|g' \ + -e 's|++GITWEB_CONFIG_SYSTEM++|$(GITWEB_CONFIG_SYSTEM)|g' \ -e 's|++GITWEB_HOME_LINK_STR++|$(GITWEB_HOME_LINK_STR)|g' \ -e 's|++GITWEB_SITENAME++|$(GITWEB_SITENAME)|g' \ -e 's|++GITWEB_PROJECTROOT++|$(GITWEB_PROJECTROOT)|g' \