[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] build: Properly expand @INSTALL_PROGRAM@ viariable when cross-co
From: |
manolis837 |
Subject: |
[PATCH] build: Properly expand @INSTALL_PROGRAM@ viariable when cross-compiling. |
Date: |
Wed, 18 Jan 2017 19:58:30 +0200 |
From: Manolis Ragkousis <address@hidden>
* src/local.mk (cu_install_program): Replace "=" with ":=" when cross-compiling.
---
src/local.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/local.mk b/src/local.mk
index 86d0d8e22..65deefb4b 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_PROGRAM@
else
cu_install_program = src/ginstall
endif
--
2.11.0
[PATCH] build: Properly expand cu_install_program viariable when cross-compiling, manolis837, 2017/01/25