[Glibc-bsd-commits] r2400 - trunk/libfreebsd/debian

Guillem Jover guillem at alioth.debian.org
Tue Apr 7 01:49:22 UTC 2009


Author: guillem
Date: 2009-04-07 01:49:22 +0000 (Tue, 07 Apr 2009)
New Revision: 2400

Modified:
   trunk/libfreebsd/debian/changelog
   trunk/libfreebsd/debian/rules
Log:
Clean up debian/rules

Add build-arch and build-indep targets
Rename install to install-arch.
Remove dependencies from binary-indep.
Change binary-arch to depend only on install-arch.


Modified: trunk/libfreebsd/debian/changelog
===================================================================
--- trunk/libfreebsd/debian/changelog	2009-04-07 01:44:58 UTC (rev 2399)
+++ trunk/libfreebsd/debian/changelog	2009-04-07 01:49:22 UTC (rev 2400)
@@ -9,6 +9,11 @@
   * Use dh_prep instead of “dh_clean -k”.
   * Add a symbols file for libfreebsd0.
   * Add a library debugging symbols package.
+  * Clean up debian/rules:
+    - Add build-arch and build-indep targets
+    - Rename install to install-arch.
+    - Remove dependencies from binary-indep.
+    - Change binary-arch to depend only on install-arch.
 
  -- Guillem Jover <guillem at debian.org>  Thu, 17 May 2007 20:27:34 +0300
 

Modified: trunk/libfreebsd/debian/rules
===================================================================
--- trunk/libfreebsd/debian/rules	2009-04-07 01:44:58 UTC (rev 2399)
+++ trunk/libfreebsd/debian/rules	2009-04-07 01:49:22 UTC (rev 2400)
@@ -19,11 +19,15 @@
 lib := libfreebsd0
 libdbg := $(lib)-dbg
 
-build:
+build-indep:
+
+build-arch:
 	dh_testdir
 	
 	$(MAKE)
 
+build: build-indep build-arch
+
 clean:
 	dh_testdir
 	dh_testroot
@@ -32,7 +36,7 @@
 	
 	dh_clean
 
-install: build
+install-arch: build-arch
 	dh_testdir
 	dh_testroot
 	dh_prep
@@ -40,10 +44,10 @@
 	
 	$(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
 
-binary-indep: build install
+binary-indep:
 # Nothing to do.
 
-binary-arch: build install
+binary-arch: install-arch
 	dh_testdir
 	dh_testroot
 	dh_installchangelogs




More information about the Glibc-bsd-commits mailing list