[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677
mjs
mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:32:51 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit fd73dc305f7184e4076c1038011c844c65000ca5
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Mon Aug 19 21:59:25 2002 +0000
* Makefile.am: Added new mechanism to clean only the objects that
depend on JavaScript.
* force-js-clean-timestamp: Touched since I changed JSC just now.
* .cvsignore: Ignore previous-js-clean-timestamp.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1873 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/.cvsignore b/WebCore/.cvsignore
index 6cb2a46..ecc07d2 100644
--- a/WebCore/.cvsignore
+++ b/WebCore/.cvsignore
@@ -2,3 +2,4 @@ Makefile
Makefile.in
WebCore-combined.exp
previous-clean-timestamp
+previous-js-clean-timestamp
diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 2a27e27..ce3b7b0 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,3 +1,10 @@
+2002-08-19 Maciej Stachowiak <mjs at apple.com>
+
+ * Makefile.am: Added new mechanism to clean only the objects that
+ depend on JavaScript.
+ * force-js-clean-timestamp: Touched since I changed JSC just now.
+ * .cvsignore: Ignore previous-js-clean-timestamp.
+
2002-08-19 Darin Adler <darin at apple.com>
Fixed tab cycle on slashdot.org and elsewhere by being stricter about what is
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 2a27e27..ce3b7b0 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,10 @@
+2002-08-19 Maciej Stachowiak <mjs at apple.com>
+
+ * Makefile.am: Added new mechanism to clean only the objects that
+ depend on JavaScript.
+ * force-js-clean-timestamp: Touched since I changed JSC just now.
+ * .cvsignore: Ignore previous-js-clean-timestamp.
+
2002-08-19 Darin Adler <darin at apple.com>
Fixed tab cycle on slashdot.org and elsewhere by being stricter about what is
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 2a27e27..ce3b7b0 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,10 @@
+2002-08-19 Maciej Stachowiak <mjs at apple.com>
+
+ * Makefile.am: Added new mechanism to clean only the objects that
+ depend on JavaScript.
+ * force-js-clean-timestamp: Touched since I changed JSC just now.
+ * .cvsignore: Ignore previous-js-clean-timestamp.
+
2002-08-19 Darin Adler <darin at apple.com>
Fixed tab cycle on slashdot.org and elsewhere by being stricter about what is
diff --git a/WebCore/Makefile.am b/WebCore/Makefile.am
index 1776f67..f34a529 100644
--- a/WebCore/Makefile.am
+++ b/WebCore/Makefile.am
@@ -15,6 +15,9 @@ noinst_DATA = WebCore-combined.exp
BUILT_SOURCES = $(noinst_DATA)
CLEANFILES = $(BUILT_SOURCES)
-all: previous-clean-timestamp
+all: previous-clean-timestamp previous-js-clean-timestamp
previous-clean-timestamp: force-clean-timestamp
- make clean && touch $@
+ make clean && touch $@ && touch previous-js-clean-timestamp
+
+previous-js-clean-timestamp: force-js-clean-timestamp
+ ../Tools/Scripts/clean-webcore-js && touch $@
diff --git a/WebCore/force-js-clean-timestamp b/WebCore/force-js-clean-timestamp
new file mode 100644
index 0000000..14e0737
--- /dev/null
+++ b/WebCore/force-js-clean-timestamp
@@ -0,0 +1,2 @@
+JavaScriptCore changes 8/19 - mjs
+
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list