summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/coreutils/coreutils/0001-local.mk-fix-cross-compiling-problem.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/coreutils/coreutils/0001-local.mk-fix-cross-compiling-problem.patch')
-rw-r--r--meta/recipes-core/coreutils/coreutils/0001-local.mk-fix-cross-compiling-problem.patch12
1 files changed, 6 insertions, 6 deletions
diff --git a/meta/recipes-core/coreutils/coreutils/0001-local.mk-fix-cross-compiling-problem.patch b/meta/recipes-core/coreutils/coreutils/0001-local.mk-fix-cross-compiling-problem.patch
index 66f9a716c9..97a6357ab9 100644
--- a/meta/recipes-core/coreutils/coreutils/0001-local.mk-fix-cross-compiling-problem.patch
+++ b/meta/recipes-core/coreutils/coreutils/0001-local.mk-fix-cross-compiling-problem.patch
@@ -1,4 +1,7 @@
1Subject: local.mk: fix cross compiling problem 1From 7cb2d20cfa2a27191255031d231cd41917dcffe8 Mon Sep 17 00:00:00 2001
2From: Chen Qi <Qi.Chen@windriver.com>
3Date: Mon, 26 Dec 2016 16:10:35 +0800
4Subject: [PATCH] local.mk: fix cross compiling problem
2 5
3We meet the following error when cross compiling. 6We meet the following error when cross compiling.
4| Makefile:3418: *** Recursive variable 'INSTALL' references itself (eventually). Stop. 7| Makefile:3418: *** Recursive variable 'INSTALL' references itself (eventually). Stop.
@@ -12,15 +15,12 @@ Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
12 1 file changed, 1 insertion(+), 1 deletion(-) 15 1 file changed, 1 insertion(+), 1 deletion(-)
13 16
14diff --git a/src/local.mk b/src/local.mk 17diff --git a/src/local.mk b/src/local.mk
15index 36dfa4e..c5898cc 100644 18index 96ee941..cdd47d6 100644
16--- a/src/local.mk 19--- a/src/local.mk
17+++ b/src/local.mk 20+++ b/src/local.mk
18@@ -649,4 +649,4 @@ cu_install_program = @INSTALL_PROGRAM@ 21@@ -704,4 +704,4 @@ cu_install_program = @INSTALL@
19 else 22 else
20 cu_install_program = src/ginstall 23 cu_install_program = src/ginstall
21 endif 24 endif
22-INSTALL = $(cu_install_program) -c 25-INSTALL = $(cu_install_program) -c
23+INSTALL_PROGRAM = $(cu_install_program) 26+INSTALL_PROGRAM = $(cu_install_program)
24--
252.1.0
26