On Sat, Sep 09, 2017 at 01:38:17PM -0700, Steve Langasek wrote:
> diff -Nru oce-0.17.2/debian/rules oce-0.17.2/debian/rules
> --- oce-0.17.2/debian/rules   2016-06-16 14:02:43.000000000 -0700
> +++ oce-0.17.2/debian/rules   2017-09-09 12:53:53.000000000 -0700
> @@ -5,6 +5,9 @@
>  LDFLAGS  := $(shell dpkg-buildflags --get LDFLAGS)
>  
>  DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
> +DEB_HOST_ARCH_BITS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_BITS)
> +UNAME := $(shell uname -m)
> +DEBUG_PATH := 
> obj-$(DEB_HOST_MULTIARCH)/Unix/$(UNAME)-RelWithDebInfo-$(DEB_HOST_ARCH_BITS)

It appears this actually needs to be DEB_HOST_GNU_TYPE rather than
DEB_HOST_MULTIARCH here - which is generally the same thing, except on i386.

DEB_HOST_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
DEB_HOST_ARCH_BITS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_BITS)
UNAME := $(shell uname -m)
DEBUG_PATH := 
obj-$(DEB_HOST_GNU_TYPE)/Unix/$(UNAME)-RelWithDebInfo-$(DEB_HOST_ARCH_BITS)

-- 
Steve Langasek                   Give me a lever long enough and a Free OS
Debian Developer                   to set it on, and I can move the world.
Ubuntu Developer                                    http://www.debian.org/
slanga...@ubuntu.com                                     vor...@debian.org

Attachment: signature.asc
Description: PGP signature

Reply via email to