From: Junio C Hamano Date: Thu, 27 Oct 2011 19:04:21 +0000 (-0700) Subject: Merge branch 'rj/gitweb-clean-js' X-Git-Tag: v1.7.8-rc0~4 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/f124fe3061d4da53bad3a03fd2875141e8a7a48e?ds=inline;hp=-c Merge branch 'rj/gitweb-clean-js' * rj/gitweb-clean-js: gitweb/Makefile: Remove static/gitweb.js in the clean target --- f124fe3061d4da53bad3a03fd2875141e8a7a48e diff --combined gitweb/Makefile index e65fc27e4f,c360284c3f..cd194d057f --- a/gitweb/Makefile +++ b/gitweb/Makefile @@@ -20,7 -20,6 +20,7 @@@ INSTALL ?= instal # default configuration for gitweb GITWEB_CONFIG = gitweb_config.perl GITWEB_CONFIG_SYSTEM = /etc/gitweb.conf +GITWEB_CONFIG_COMMON = /etc/gitweb-common.conf GITWEB_HOME_LINK_STR = projects GITWEB_SITENAME = GITWEB_PROJECTROOT = /pub/git @@@ -34,7 -33,6 +34,7 @@@ GITWEB_CSS = static/gitweb.cs GITWEB_LOGO = static/git-logo.png GITWEB_FAVICON = static/git-favicon.png GITWEB_JS = static/gitweb.js +GITWEB_SITE_HTML_HEAD_STRING = GITWEB_SITE_HEADER = GITWEB_SITE_FOOTER = HIGHLIGHT_BIN = highlight @@@ -131,7 -129,6 +131,7 @@@ GITWEB_REPLACE = -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_CONFIG_COMMON++|$(GITWEB_CONFIG_COMMON)|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' \ @@@ -145,7 -142,6 +145,7 @@@ -e 's|++GITWEB_LOGO++|$(GITWEB_LOGO)|g' \ -e 's|++GITWEB_FAVICON++|$(GITWEB_FAVICON)|g' \ -e 's|++GITWEB_JS++|$(GITWEB_JS)|g' \ + -e 's|++GITWEB_SITE_HTML_HEAD_STRING++|$(GITWEB_SITE_HTML_HEAD_STRING)|g' \ -e 's|++GITWEB_SITE_HEADER++|$(GITWEB_SITE_HEADER)|g' \ -e 's|++GITWEB_SITE_FOOTER++|$(GITWEB_SITE_FOOTER)|g' \ -e 's|++HIGHLIGHT_BIN++|$(HIGHLIGHT_BIN)|g' @@@ -187,7 -183,9 +187,9 @@@ install: al ### Cleaning rules clean: - $(RM) gitweb.cgi static/gitweb.min.js static/gitweb.min.css GITWEB-BUILD-OPTIONS + $(RM) gitweb.cgi static/gitweb.js \ + static/gitweb.min.js static/gitweb.min.css \ + GITWEB-BUILD-OPTIONS .PHONY: all clean install test test-installed .FORCE-GIT-VERSION-FILE FORCE