summaryrefslogtreecommitdiffstats
path: root/recipes-bsp/u-boot/files/0001-Fix-native-build-by-using-env-variables.patch
diff options
context:
space:
mode:
authorDalon Westergreen <dwesterg@gmail.com>2019-09-18 15:02:42 -0700
committerKhem Raj <raj.khem@gmail.com>2019-09-20 18:39:32 -0700
commit87fe6e18e5c23ab8031ed9f19d3a4688fb069699 (patch)
tree53c2ef6c2fd1a7fc7e832b52f3fa1758901ff540 /recipes-bsp/u-boot/files/0001-Fix-native-build-by-using-env-variables.patch
parent9407e368405e75c6994d75c0903297ec76f2050a (diff)
downloadmeta-altera-87fe6e18e5c23ab8031ed9f19d3a4688fb069699.tar.gz
Remove old, unused u-boot files
Signed-off-by: Dalon Westergreen <dwesterg@gmail.com>
Diffstat (limited to 'recipes-bsp/u-boot/files/0001-Fix-native-build-by-using-env-variables.patch')
-rw-r--r--recipes-bsp/u-boot/files/0001-Fix-native-build-by-using-env-variables.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/recipes-bsp/u-boot/files/0001-Fix-native-build-by-using-env-variables.patch b/recipes-bsp/u-boot/files/0001-Fix-native-build-by-using-env-variables.patch
deleted file mode 100644
index 5443bce..0000000
--- a/recipes-bsp/u-boot/files/0001-Fix-native-build-by-using-env-variables.patch
+++ /dev/null
@@ -1,31 +0,0 @@
1From 5aa1e2d99a26f1cab1774fa1e94b53de42897d1c Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Jan-Simon=20M=C3=B6ller?= <jsmoeller@linuxfoundation.org>
3Date: Thu, 10 Aug 2017 19:36:21 +0200
4Subject: [PATCH] Fix native build by using env variables
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
9Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
10---
11 Makefile | 4 ++--
12 1 file changed, 2 insertions(+), 2 deletions(-)
13
14diff --git a/Makefile b/Makefile
15index 8ca1db5..fef1059 100644
16--- a/Makefile
17+++ b/Makefile
18@@ -254,8 +254,8 @@ CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
19 else if [ -x /bin/bash ]; then echo /bin/bash; \
20 else echo sh; fi ; fi)
21
22-HOSTCC = cc
23-HOSTCXX = c++
24+HOSTCC = $(CC)
25+HOSTCXX = $(CXX)
26 HOSTCFLAGS = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer \
27 $(if $(CONFIG_TOOLS_DEBUG),-g)
28 HOSTCXXFLAGS = -O2
29--
302.1.4
31