diff options
author | Jay Soffian <jaysoffian@gmail.com> | 2010-06-18 17:01:25 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-06-20 11:09:41 -0700 |
commit | 70649945c215b1674611a40eda1d0058118a6d1a (patch) | |
tree | 9e99ebd08cbe366eb5dae6c6c49858337572df10 /gitweb/Makefile | |
parent | Prepare draft release notes to 1.7.1.1 (diff) | |
download | tgif-70649945c215b1674611a40eda1d0058118a6d1a.tar.xz |
gitweb/Makefile: fix typo in gitweb.min.css rule
This typo has been in place since the rule was originally added by
0e6ce21 (Gitweb: add support for minifying gitweb.css).
Signed-off-by: Jay Soffian <jaysoffian@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'gitweb/Makefile')
-rw-r--r-- | gitweb/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitweb/Makefile b/gitweb/Makefile index f2e1d92fbb..e7dd252773 100644 --- a/gitweb/Makefile +++ b/gitweb/Makefile @@ -91,7 +91,7 @@ ifdef CSSMIN GITWEB_CSS = gitweb.min.css all:: gitweb.min.css gitweb.min.css: gitweb.css GITWEB-BUILD-OPTIONS - $(QUIET_GEN)$(CSSMIN) <$ >$@ + $(QUIET_GEN)$(CSSMIN) <$< >$@ endif GITWEB_REPLACE = \ |