blob: 6205f93571a3e3b4d60295585886371be3f007ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
JS install cleanup fixes
- Also ensure the minified JS is built before instaweb as it is referenced in
the sed expression.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
diff -Nuar git-1.7.1.orig/Makefile git-1.7.1/Makefile
--- git-1.7.1.orig/Makefile 2010-04-24 02:38:35.000000000 +0000
+++ git-1.7.1/Makefile 2010-05-01 08:47:04.491916479 +0000
@@ -1561,17 +1561,16 @@
$(QUIET_SUBDIR0)gitweb $(QUIET_SUBDIR1) all
ifdef JSMIN
-GITWEB_PROGRAMS += gitweb/gitweb.min.js
GITWEB_JS = gitweb/gitweb.min.js
else
GITWEB_JS = gitweb/gitweb.js
endif
ifdef CSSMIN
-GITWEB_PROGRAMS += gitweb/gitweb.min.css
GITWEB_CSS = gitweb/gitweb.min.css
else
GITWEB_CSS = gitweb/gitweb.css
endif
+GITWEB_PROGRAMS += $(GITWEB_JS) $(GITWEB_CSS)
OTHER_PROGRAMS += gitweb/gitweb.cgi $(GITWEB_PROGRAMS)
gitweb/gitweb.cgi: gitweb/gitweb.perl $(GITWEB_PROGRAMS)
$(QUIET_SUBDIR0)gitweb $(QUIET_SUBDIR1) $(patsubst gitweb/%,%,$@)
@@ -1586,7 +1585,7 @@
endif # CSSMIN
-git-instaweb: git-instaweb.sh gitweb/gitweb.cgi gitweb/gitweb.css gitweb/gitweb.js
+git-instaweb: git-instaweb.sh gitweb/gitweb.cgi $(GITWEB_CSS) $(GITWEB_JS)
$(QUIET_GEN)$(RM) $@ $@+ && \
sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \
-e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
|