Skip to content
This repository was archived by the owner on Jun 24, 2022. It is now read-only.

Commit c2a176a

Browse files
Move Sources to Source
https://bugs.webkit.org/show_bug.cgi?id=51794 Reviewed by Eric Seidel. Update build files to point to the new location. * CMakeLists.txt: * GNUmakefile.am: * Makefile: * autogen.sh: * configure.ac: Tools: Update scripts to point to the new location. * Scripts/build-webkit: * Scripts/do-file-rename: * Scripts/do-webcore-rename: * Scripts/webkitpy/common/config/build.py: * Scripts/webkitpy/common/config/build_unittest.py: Websites/bugs.webkit.org: * PrettyPatch/PrettyPatch.rb: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@74852 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent 94d0ffe commit c2a176a

File tree

307 files changed

+60
-21
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

307 files changed

+60
-21
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ PROJECT(WebKit)
77
IF (NOT CMAKE_BUILD_TYPE AND NOT CMAKE_C_FLAGS AND NOT CMAKE_CXX_FLAGS)
88
SET(CMAKE_BUILD_TYPE Release)
99
ENDIF ()
10-
SET(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/Sources/cmake")
10+
SET(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/Source/cmake")
1111

1212
SET(JAVASCRIPTCORE_DIR "${CMAKE_SOURCE_DIR}/JavaScriptCore")
1313
SET(WEBCORE_DIR "${CMAKE_SOURCE_DIR}/WebCore")

ChangeLog

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
2011-01-01 Adam Barth <[email protected]>
2+
3+
Reviewed by Eric Seidel.
4+
5+
Move Sources to Source
6+
https://bugs.webkit.org/show_bug.cgi?id=51794
7+
8+
Update build files to point to the new location.
9+
10+
* CMakeLists.txt:
11+
* GNUmakefile.am:
12+
* Makefile:
13+
* autogen.sh:
14+
* configure.ac:
15+
116
2010-12-31 Adam Barth <[email protected]>
217

318
Rubber-stamped by Eric Seidel.

GNUmakefile.am

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ version_script = -export-symbols-regex "^(webkit_|k?JS).*"
105105
endif
106106

107107
if OS_GNU
108-
version_script = -Wl,--version-script,$(srcdir)/Sources/autotools/symbols.filter
108+
version_script = -Wl,--version-script,$(srcdir)/Source/autotools/symbols.filter
109109
endif
110110

111111
# Convenience libraries
@@ -199,7 +199,7 @@ global_cppflags += \
199199
endif
200200

201201
EXTRA_DIST += \
202-
$(srcdir)/Sources/autotools/symbols.filter \
202+
$(srcdir)/Source/autotools/symbols.filter \
203203
$(srcdir)/gtk-doc.make \
204204
$(srcdir)/WebKit/LICENSE
205205

@@ -234,11 +234,11 @@ MAINTAINERCLEANFILES += \
234234
$(builddir)/doltcompile \
235235
$(builddir)/doltlibtool \
236236
$(srcdir)/aconfig.h.in \
237-
$(srcdir)/Sources/autotools/config.* \
238-
$(srcdir)/Sources/autotools/compile \
239-
$(srcdir)/Sources/autotools/depcomp \
240-
$(srcdir)/Sources/autotools/install-sh \
241-
$(srcdir)/Sources/autotools/missing \
237+
$(srcdir)/Source/autotools/config.* \
238+
$(srcdir)/Source/autotools/compile \
239+
$(srcdir)/Source/autotools/depcomp \
240+
$(srcdir)/Source/autotools/install-sh \
241+
$(srcdir)/Source/autotools/missing \
242242
$(srcdir)/configure \
243243
$(srcdir)/GNUmakefile.in \
244244
$(srcdir)/INSTALL \

Makefile

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

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

0 commit comments

Comments
 (0)