[SCM] WebKit Debian packaging branch, debian/unstable, updated. 0+svn29752-1-1645-gd3fe478

Mike Hommey glandium at debian.org
Sat Apr 12 19:56:54 UTC 2008


The following commit has been merged in the debian/unstable branch:
commit ec6da308560f3be03d961d54076d00507a5ec9d9
Author: Mike Hommey <glandium at debian.org>
Date:   Sun Apr 6 18:49:38 2008 +0200

    debian/rules: Replace make calls with $(MAKE).

diff --git a/debian/changelog b/debian/changelog
index 81a9339..ab672f9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,7 @@ webkit (0~svn29752-2) UNRELEASED; urgency=low
   * debian/control, debian/rules: Don't build QtWebKit, it will be built from
     Qt sources.
   * debian/libqtwebkit*: Removed.
+  * debian/rules: Replaced make calls with $(MAKE).
 
  -- Mike Hommey <glandium at debian.org>  Sun, 06 Apr 2008 18:45:18 +0200
 
diff --git a/debian/rules b/debian/rules
index b92fdc9..181d1fb 100755
--- a/debian/rules
+++ b/debian/rules
@@ -43,7 +43,7 @@ build-stamp:
 		WEBKIT_LIB_DIR=/usr/lib \
 		"$(CURDIR)"/WebKit.pro
 
-	make -C build
+	$(MAKE) -C build
 
 	touch $@
 
@@ -55,7 +55,7 @@ install-stamp: build-stamp
 
 	dh_clean -k
 
-	make -C build install INSTALL_ROOT="$(CURDIR)"/debian/tmp
+	$(MAKE) -C build install INSTALL_ROOT="$(CURDIR)"/debian/tmp
 	[ ! -d debian/tmp/usr/lib/WebKit ] && install -d -m 755 debian/tmp/usr/lib/WebKit || true
 	mv build/WebKitTools/DumpRenderTree/gtk/DumpRenderTree build/WebKitTools/DumpRenderTree/gtk/GtkDumpRenderTree
 	install -m 755 build/WebKitTools/GtkLauncher/GtkLauncher build/WebKitTools/DumpRenderTree/gtk/GtkDumpRenderTree debian/tmp/usr/lib/WebKit

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list