author | Junio C Hamano <gitster@pobox.com> | |
Mon, 21 Jun 2010 06:21:27 +0000 (23:21 -0700) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Mon, 21 Jun 2010 06:21:27 +0000 (23:21 -0700) |
* maint:
gitweb/Makefile: fix typo in gitweb.min.css rule
Conflicts:
gitweb/Makefile
gitweb/Makefile: fix typo in gitweb.min.css rule
Conflicts:
gitweb/Makefile
1 | 2 | |||
---|---|---|---|---|
gitweb/Makefile | patch | | diff1 | | diff2 | | blob | history |
diff --cc gitweb/Makefile
index d2584fedd8811a47c35d6f814c5b57e4a0fb2f2c,e7dd2527736ddc6e47f864916115f9cc5c9e7dd9..2fb7c2d77bbd5f2041341822859dce51ae504d83
--- 1/gitweb/Makefile
--- 2/gitweb/Makefile
+++ b/gitweb/Makefile
endif
ifdef CSSMIN
-GITWEB_CSS = gitweb.min.css
-all:: gitweb.min.css
-gitweb.min.css: gitweb.css GITWEB-BUILD-OPTIONS
+GITWEB_FILES += static/gitweb.min.css
+GITWEB_CSS = static/gitweb.min.css
+all:: static/gitweb.min.css
+static/gitweb.min.css: static/gitweb.css GITWEB-BUILD-OPTIONS
- $(QUIET_GEN)$(CSSMIN) <$ >$@
+ $(QUIET_GEN)$(CSSMIN) <$< >$@
+else
+GITWEB_FILES += static/gitweb.css
endif
+GITWEB_FILES += static/git-logo.png static/git-favicon.png
+
GITWEB_REPLACE = \
-e 's|++GIT_VERSION++|$(GIT_VERSION)|g' \
-e 's|++GIT_BINDIR++|$(bindir)|g' \