summaryrefslogtreecommitdiffstats
path: root/recipes-extended/iasl/iasl/Make-CC-definition-conditional.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-extended/iasl/iasl/Make-CC-definition-conditional.patch')
-rw-r--r--recipes-extended/iasl/iasl/Make-CC-definition-conditional.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/recipes-extended/iasl/iasl/Make-CC-definition-conditional.patch b/recipes-extended/iasl/iasl/Make-CC-definition-conditional.patch
deleted file mode 100644
index f69a36c6..00000000
--- a/recipes-extended/iasl/iasl/Make-CC-definition-conditional.patch
+++ /dev/null
@@ -1,29 +0,0 @@
1[PATCH] Make CC definition conditional
2
3Upstream-Status: pending
4
5By hardcoding CC's definition to gcc, make this packages unable to
6cross-compile. the -e options of make can not override the CC since
7it is not defined in Makefile, but in Makefile.config
8
9Signed-off-by: Roy.Li <rongqing.li@windriver.com>
10---
11 generate/unix/Makefile.config | 4 ++--
12 1 file changed, 2 insertions(+), 2 deletions(-)
13
14diff --git a/generate/unix/Makefile.config b/generate/unix/Makefile.config
15index 8d41399..72d597d 100644
16--- a/generate/unix/Makefile.config
17+++ b/generate/unix/Makefile.config
18@@ -35,7 +35,7 @@
19 .SUFFIXES :
20 PROGS = acpibin acpidump acpiexamples acpiexec acpihelp acpinames acpisrc acpixtract iasl
21 HOST ?= _CYGWIN
22-CC = gcc
23+CC ?= gcc
24
25 #
26 # Common defines
27--
281.9.1
29