Skip to content

Commit d603f8e

Browse files
committed
Updated makefiles used by Apple engineers to fix build with the
new JavaScriptGlue location. * Makefile: Told this to build JavaScriptGlue. Some day we might want it to descend into Sources instead and use the Makefile there, but there are problems with sequencing the project builds, so that can wait. * Sources/Makefile.shared: Added. Canonical link: https://commits.webkit.org/64983@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@74644 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent 5c887e5 commit d603f8e

3 files changed

Lines changed: 14 additions & 1 deletion

File tree

ChangeLog

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
2010-12-24 Darin Adler <darin@apple.com>
2+
3+
Updated makefiles used by Apple engineers to fix build with the
4+
new JavaScriptGlue location.
5+
6+
* Makefile: Told this to build JavaScriptGlue. Some day we might
7+
want it to descend into Sources instead and use the Makefile there,
8+
but there are problems with sequencing the project builds, so that
9+
can wait.
10+
* Sources/Makefile.shared: Added.
11+
112
2010-12-24 Ryuan Choi <ryuan.choi@samsung.com>
213

314
Reviewed by Kenneth Rohde Christiansen.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
MODULES = JavaScriptCore ANGLE WebCore WebKit WebKit2 Tools
1+
MODULES = JavaScriptCore Sources/JavaScriptGlue ANGLE WebCore WebKit WebKit2 Tools
22

33
all:
44
@for dir in $(MODULES); do ${MAKE} $@ -C $$dir; exit_status=$$?; \

Sources/Makefile.shared

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
SCRIPTS_PATH ?= ../../Tools/Scripts
2+
include ../../Makefile.shared

0 commit comments

Comments
 (0)