diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-06-15 23:49:22 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-06-22 09:16:01 +0100 |
commit | dccca9af475effc9389844f2a9a0466c035569ce (patch) | |
tree | 5742af05ca54ac3f5f46d559184ea46601e5a157 /meta/recipes-devtools/kconfig-frontends/files/missing-mkdir.patch | |
parent | 5e9b0569e2f1ba613bf0b28e40cf2fe8a2fb6a10 (diff) | |
download | poky-dccca9af475effc9389844f2a9a0466c035569ce.tar.gz |
kconfig-frontends: Remove as only needed for eglibc
This was only added for eglibc. That is gone so we can drop this too.
(From OE-Core rev: 7c36b4316ad185088c65a4db8a84b5fcba9eef06)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/kconfig-frontends/files/missing-mkdir.patch')
-rw-r--r-- | meta/recipes-devtools/kconfig-frontends/files/missing-mkdir.patch | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/meta/recipes-devtools/kconfig-frontends/files/missing-mkdir.patch b/meta/recipes-devtools/kconfig-frontends/files/missing-mkdir.patch deleted file mode 100644 index a11186e51e..0000000000 --- a/meta/recipes-devtools/kconfig-frontends/files/missing-mkdir.patch +++ /dev/null | |||
@@ -1,37 +0,0 @@ | |||
1 | Upstream-Status: Submitted | ||
2 | Signed-off-by: Ross Burton <ross.burton@intel.com> | ||
3 | |||
4 | From ca05ee2fb6db5b3b1edc16dba6150a2c6078a6cf Mon Sep 17 00:00:00 2001 | ||
5 | From: Ross Burton <ross.burton@intel.com> | ||
6 | Date: Tue, 9 May 2017 15:30:00 +0100 | ||
7 | Subject: [PATCH] Makefile: ensure utils/ exists before writing to it | ||
8 | |||
9 | Since utils/ was changed to not build recursively it's possible that in | ||
10 | out-of-tree builds the utils/ directory hasn't been created when Make runs the | ||
11 | utils/kconfig-tweak target which tries to write to file inside utils/. | ||
12 | |||
13 | To ensure this can work, mkdir the directory. | ||
14 | |||
15 | Signed-off-by: Ross Burton <ross.burton@intel.com> | ||
16 | --- | ||
17 | Makefile.am | 1 + | ||
18 | 1 file changed, 1 insertion(+) | ||
19 | |||
20 | diff --git a/Makefile.am b/Makefile.am | ||
21 | index c8e96ef..1baa110 100644 | ||
22 | --- a/Makefile.am | ||
23 | +++ b/Makefile.am | ||
24 | @@ -173,2 +173,3 @@ bin_SCRIPTS += frontends/kconfig | ||
25 | frontends/kconfig: frontends/kconfig.in | ||
26 | + $(MKDIR_P) $(@D) | ||
27 | $(AM_V_GEN)$(SED) -e 's/@KCFG_LIST@/$(kcfg_list)/g' \ | ||
28 | @@ -348,6 +348,7 @@ EXTRA_DIST += \ | ||
29 | utils/kconfig-tweak.in.patch | ||
30 | |||
31 | utils/kconfig-tweak: utils/kconfig-tweak.in | ||
32 | + $(MKDIR_P) $(@D) | ||
33 | $(AM_V_GEN)$(SED) -e "s/@CONFIG_@/$(config_prefix)/g" \ | ||
34 | $< >$@ | ||
35 | @chmod +x $@ | ||
36 | -- | ||
37 | 2.8.1 | ||