Bug#799883: [PATCH v3 1/2] Treat *-{i386,amd64} as x86

2015-09-24 Thread James Clarke
--- debian/rules | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/rules b/debian/rules index 63a5932..81e9ad9 100755 --- a/debian/rules +++ b/debian/rules @@ -5,8 +5,8 @@ %: dh $@ -ARCH=$(shell dpkg-architecture -qDEB_HOST_ARCH) -ifneq (,$(findstring :$(ARC

Bug#799883: [PATCH v3 0/2] Support probing on the Hurd

2015-09-24 Thread James Clarke
These patches add probing support when running on the Hurd. The first patch also means that kFreeBSD systems get the x86 scripts. Changes since v2: * debian/rules: Use DEB_HOST_ARCH_CPU. Changes since v1: * os-prober: Remove debug statement. Scan /dev/hdXXsX as well. James Clarke (2): Treat *-

Bug#799883: [PATCH v3 2/2] Support probing on the Hurd

2015-09-24 Thread James Clarke
--- os-prober | 21 +++-- 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/os-prober b/os-prober index d67f0b3..6a73a42 100755 --- a/os-prober +++ b/os-prober @@ -48,13 +48,22 @@ partitions () { done done

Re: Bug#799883: [PATCH v2 1/2] Treat *-{i386,amd64} as x86

2015-09-24 Thread James Clarke
Ah, thank you, I did not realise such a variable existed; guess I should have checked! James > On 24 Sep 2015, at 14:37, Guillem Jover wrote: > > Hi! > > On Wed, 2015-09-23 at 19:04:03 +0100, James Clarke wrote: >> --- a/debian/rules >> +++ b/debian/rules >> @@ -6,7 +6,7 @@ >> dh $@ >>

Re: Bug#799883: [PATCH v2 1/2] Treat *-{i386,amd64} as x86

2015-09-24 Thread Guillem Jover
Hi! On Wed, 2015-09-23 at 19:04:03 +0100, James Clarke wrote: > --- a/debian/rules > +++ b/debian/rules > @@ -6,7 +6,7 @@ > dh $@ > > ARCH=$(shell dpkg-architecture -qDEB_HOST_ARCH) > -ifneq (,$(findstring :$(ARCH):,:i386:amd64:)) > +ifneq (,$(filter i386 amd64 %-i386 %-amd64,$(ARCH))) >