Re: MythTV 30 and problems with multiple delivery systems

Top Page

Reply to this message
Author: Christian Marillat
Date:  
To: dmo-discussion
Subject: Re: MythTV 30 and problems with multiple delivery systems
On 08 mars 2019 09:49, Stephan Seitz <stse+debian@???> wrote:

[...]

> Okay. I tried to compile mythtv myself (apt source mythtv). I can
> build it, but „debian/rules install” is failing. The libs are copied
> to debian/tmp/usr/lib but dh_install looks for them in
> debian/tmp/usr/lib/*/.
>
> For some reason the x86_64-linux-gnu is missing. Which environment
> variable I have to set?


DEB_HOST_MULTIARCH come from dpkg-architecture the variable should be
passed to debian/rules

add this line at the top of debian/rules

export DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)

Christian