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

rjw rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 05:48:42 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 7f6d8ee0e2044d1bf76e996c4902ce411eea8c74
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Oct 3 21:31:01 2001 +0000

    Simple script to make libkde.a
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@261 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/makelibkde b/WebCore/makelibkde
new file mode 100644
index 0000000..e01239a
--- /dev/null
+++ b/WebCore/makelibkde
@@ -0,0 +1,18 @@
+#!/bin/sh
+SUBLIBS=`find src/kdelibs -name 'lib*.a' -print`
+LIBRARY=libkde.a
+
+mkdir -p .objects
+cd .objects
+
+for SUBLIB in $SUBLIBS; do
+	ar x ../$SUBLIB
+done
+
+cd ..
+
+rm -f $LIBRARY
+ar cru $LIBRARY .objects/*.o
+ranlib $LIBRARY
+
+rm -rf .objects

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list