[Glibc-bsd-commits] r3300 - trunk/web/porting

Guillem Jover guillem at alioth.debian.org
Sat May 7 06:29:34 UTC 2011


Author: guillem
Date: 2011-05-07 06:29:29 +0000 (Sat, 07 May 2011)
New Revision: 3300

Modified:
   trunk/web/porting/PORTING
Log:
Use architecture wildcards instead of hardcoded lists

All build tools support them now.


Modified: trunk/web/porting/PORTING
===================================================================
--- trunk/web/porting/PORTING	2011-05-02 04:06:48 UTC (rev 3299)
+++ trunk/web/porting/PORTING	2011-05-07 06:29:29 UTC (rev 3300)
@@ -54,19 +54,18 @@
 
 Example for Linux-specific build-dependency:
 
-  Build-Depends: [...], libselinux1-dev [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386], dpkg-dev (>= 1.13.13), [...]
+  Build-Depends: [...], libselinux1-dev [linux-any], dpkg-dev (>= 1.13.13), [...]
 
 Example for i386-only package:
 
   Build-Depends: [...], dpkg-dev (>= 1.13.13), [...]
-  Architecture: i386 kfreebsd-i386 hurd-i386
+  Architecture: any-i386
 
 Example for Linux-only package:
 
   Build-Depends: [...], dpkg-dev (>= 1.13.13), [...]
-  Architecture: i386 ia64 alpha amd64 arm hppa m32r m68k mips mipsel powerpc ppc64 s390 s390x sh3 sh3eb sh4 sh4eb sparc
+  Architecture: linux-any
 
-WARNING: please note that this functionality is still not supported by debhelper
 
 Libraries, your beloved enemy
 -----------------------------




More information about the Glibc-bsd-commits mailing list