From bfe3cddce93331aafef1ca4e0c5ed868fd131979 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alejandro=20R=2E=20Sede=C3=B1o?= Date: Thu, 22 Jul 2010 01:13:12 -0400 Subject: [PATCH] Pull common "static" out into its own variable This is used to affect where static content is served from, though not where it is installed. --- gitweb/Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gitweb/Makefile b/gitweb/Makefile index 2fb7c2d77..b42a0c222 100644 --- a/gitweb/Makefile +++ b/gitweb/Makefile @@ -29,10 +29,11 @@ GITWEB_STRICT_EXPORT = GITWEB_BASE_URL = GITWEB_LIST = GITWEB_HOMETEXT = indextext.html -GITWEB_CSS = static/gitweb.css -GITWEB_LOGO = static/git-logo.png -GITWEB_FAVICON = static/git-favicon.png -GITWEB_JS = static/gitweb.js +GITWEB_STATIC = static +GITWEB_CSS = $(GITWEB_STATIC)/gitweb.css +GITWEB_LOGO = $(GITWEB_STATIC)/git-logo.png +GITWEB_FAVICON = $(GITWEB_STATIC)/git-favicon.png +GITWEB_JS = $(GITWEB_STATIC)/gitweb.js GITWEB_SITE_HEADER = GITWEB_SITE_FOOTER = -- 2.45.2