summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/make/make.inc
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2023-03-09 16:19:49 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-03-11 00:08:41 +0000
commite0edfe32ebeda32144b7006ad403d7e822e523f8 (patch)
tree6d58ef2ecf1b54439d14ec3233807dde373417fe /meta/recipes-devtools/make/make.inc
parent5cb58399751683e68f08b20405be00eea4d35f38 (diff)
downloadpoky-e0edfe32ebeda32144b7006ad403d7e822e523f8.tar.gz
make: upgrade 4.4 -> 4.4.1
(From OE-Core rev: 076815f41740fc480e3fb6b3087840ece1b9e3ce) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/make/make.inc')
-rw-r--r--meta/recipes-devtools/make/make.inc5
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-devtools/make/make.inc b/meta/recipes-devtools/make/make.inc
index a0a72b6295..56b863480c 100644
--- a/meta/recipes-devtools/make/make.inc
+++ b/meta/recipes-devtools/make/make.inc
@@ -11,3 +11,8 @@ SRC_URI = "${GNU_MIRROR}/make/make-${PV}.tar.gz \
11inherit autotools gettext pkgconfig texinfo 11inherit autotools gettext pkgconfig texinfo
12 12
13PROVIDES = "virtual/make" 13PROVIDES = "virtual/make"
14
15# Otherwise $CXX leaks into /usr/bin/make
16do_configure:prepend() {
17 unset CXX
18}