[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] build: Properly expand cu_install_program viariable when cro
From: |
Eric Blake |
Subject: |
Re: [PATCH] build: Properly expand cu_install_program viariable when cross-compiling |
Date: |
Wed, 25 Jan 2017 10:56:19 -0600 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 |
On 01/25/2017 10:33 AM, address@hidden wrote:
> From: Manolis Ragkousis <address@hidden>
>
Typo in the subject line (viariable); deleting that word makes the
commit message length more like other commits.
> * src/local.mk (cu_install_program): Replace @INSTALL_PROGRAM@
> with @INSTALL@ when cross-compiling.
Worth additionally pointing out that the problem was introduced by
commit 477a1e8ed49313. I made those tweaks and pushed.
> ---
> src/local.mk | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/src/local.mk b/src/local.mk
> index 86d0d8e22..5b25fcb87 100644
> --- a/src/local.mk
> +++ b/src/local.mk
> @@ -645,7 +645,7 @@ check-duplicate-no-install: src/tr
>
> # Use the just-built 'ginstall', when not cross-compiling.
> if CROSS_COMPILING
> -cu_install_program = @INSTALL_PROGRAM@
> +cu_install_program = @INSTALL@
> else
> cu_install_program = src/ginstall
> endif
>
--
Eric Blake eblake redhat com +1-919-301-3266
Libvirt virtualization library http://libvirt.org
signature.asc
Description: OpenPGP digital signature
[PATCH] build: Properly expand cu_install_program viariable when cross-compiling, manolis837, 2017/01/25
- Re: [PATCH] build: Properly expand cu_install_program viariable when cross-compiling,
Eric Blake <=