[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

darin darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:17:04 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 06d291c9ea2a33ebff15bd1ef7df89a9948b3785
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Jun 5 21:22:38 2002 +0000

    	Fix problem seen as build failure on Jersey.
    
    	* Makefile.am: JavaScriptCore-stamp needs to be a dependency, not a
    	source file, because it doesn't have a corresponding object file.
    	Making it a dependency causes things to compile in the right order.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1279 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 1afaf9e..2f7ffa4 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,11 @@
+2002-06-05  Darin Adler  <darin at apple.com>
+
+	Fix problem seen as build failure on Jersey.
+
+	* Makefile.am: JavaScriptCore-stamp needs to be a dependency, not a
+	source file, because it doesn't have a corresponding object file.
+	Making it a dependency causes things to compile in the right order.
+
 2002-06-04  Darin Adler  <darin at apple.com>
 
 	Improve the speed of the JavaScript string append operation by growing
diff --git a/JavaScriptCore/ChangeLog-2002-12-03 b/JavaScriptCore/ChangeLog-2002-12-03
index 1afaf9e..2f7ffa4 100644
--- a/JavaScriptCore/ChangeLog-2002-12-03
+++ b/JavaScriptCore/ChangeLog-2002-12-03
@@ -1,3 +1,11 @@
+2002-06-05  Darin Adler  <darin at apple.com>
+
+	Fix problem seen as build failure on Jersey.
+
+	* Makefile.am: JavaScriptCore-stamp needs to be a dependency, not a
+	source file, because it doesn't have a corresponding object file.
+	Making it a dependency causes things to compile in the right order.
+
 2002-06-04  Darin Adler  <darin at apple.com>
 
 	Improve the speed of the JavaScript string append operation by growing
diff --git a/JavaScriptCore/ChangeLog-2003-10-25 b/JavaScriptCore/ChangeLog-2003-10-25
index 1afaf9e..2f7ffa4 100644
--- a/JavaScriptCore/ChangeLog-2003-10-25
+++ b/JavaScriptCore/ChangeLog-2003-10-25
@@ -1,3 +1,11 @@
+2002-06-05  Darin Adler  <darin at apple.com>
+
+	Fix problem seen as build failure on Jersey.
+
+	* Makefile.am: JavaScriptCore-stamp needs to be a dependency, not a
+	source file, because it doesn't have a corresponding object file.
+	Making it a dependency causes things to compile in the right order.
+
 2002-06-04  Darin Adler  <darin at apple.com>
 
 	Improve the speed of the JavaScript string append operation by growing
diff --git a/JavaScriptCore/Makefile.am b/JavaScriptCore/Makefile.am
index 7c5ff60..8f6415b 100644
--- a/JavaScriptCore/Makefile.am
+++ b/JavaScriptCore/Makefile.am
@@ -6,7 +6,8 @@ INCLUDES = -I $(top_srcdir)/JavaScriptCore/kjs
 
 # FIXME: need to build kjs test program
 noinst_PROGRAMS = kjs/testkjs
-kjs_testkjs_SOURCES = kjs/testkjs.cpp JavaScriptCore-stamp
+kjs_testkjs_SOURCES = kjs/testkjs.cpp
+kjs_testkjs_DEPENDENCIES = JavaScriptCore-stamp
 kjs_testkjs_LDFLAGS = -F$(SYMROOTS) -framework JavaScriptCore
 
 FRAMEWORK_NAME = JavaScriptCore

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list