diff options
author | Khem Raj <raj.khem@gmail.com> | 2012-09-06 15:20:36 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-10 13:01:50 +0100 |
commit | f23d843747208d50770aaabf0796a77b84919a94 (patch) | |
tree | 3748bde3d28e9a496591e2798582d066f7cb9754 | |
parent | 3cfc70fc27c8db79b1f35ca4e1e746fb83ca360f (diff) | |
download | poky-f23d843747208d50770aaabf0796a77b84919a94.tar.gz |
kconfig-frontends: Create symlinks for conf and mconf
eglibc calls out mconf and conf directly so lets create
symlinks to point to their kconfig- counterparts
(From OE-Core rev: 5857772e285ad6e39b7216bc542189e45f6fdbf7)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/kconfig-frontends/kconfig-frontends_3.5.bb | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/meta/recipes-devtools/kconfig-frontends/kconfig-frontends_3.5.bb b/meta/recipes-devtools/kconfig-frontends/kconfig-frontends_3.5.bb index 277de03200..96899b842b 100644 --- a/meta/recipes-devtools/kconfig-frontends/kconfig-frontends_3.5.bb +++ b/meta/recipes-devtools/kconfig-frontends/kconfig-frontends_3.5.bb | |||
@@ -11,7 +11,7 @@ LICENSE = "GPL-2.0" | |||
11 | LIC_FILES_CHKSUM = "file://COPYING;md5=9b8cf60ff39767ff04b671fca8302408" | 11 | LIC_FILES_CHKSUM = "file://COPYING;md5=9b8cf60ff39767ff04b671fca8302408" |
12 | SECTION = "devel" | 12 | SECTION = "devel" |
13 | DEPENDS += "ncurses flex bison gperf" | 13 | DEPENDS += "ncurses flex bison gperf" |
14 | PR = "r0" | 14 | PR = "r1" |
15 | PV = "3.5.0" | 15 | PV = "3.5.0" |
16 | SPIN = "0" | 16 | SPIN = "0" |
17 | SRC_URI = "http://ymorin.is-a-geek.org/download/${BPN}/${BPN}-${PV}-${SPIN}.tar.xz" | 17 | SRC_URI = "http://ymorin.is-a-geek.org/download/${BPN}/${BPN}-${PV}-${SPIN}.tar.xz" |
@@ -24,6 +24,12 @@ inherit autotools | |||
24 | do_configure_prepend () { | 24 | do_configure_prepend () { |
25 | mkdir -p scripts/.autostuff/m4 | 25 | mkdir -p scripts/.autostuff/m4 |
26 | } | 26 | } |
27 | |||
28 | do_install_append() { | ||
29 | ln -s kconfig-conf ${D}${bindir}/conf | ||
30 | ln -s kconfig-mconf ${D}${bindir}/mconf | ||
31 | } | ||
32 | |||
27 | EXTRA_OECONF += "--disable-gconf --disable-qconf" | 33 | EXTRA_OECONF += "--disable-gconf --disable-qconf" |
28 | 34 | ||
29 | # Some packages have the version preceeding the .so instead properly | 35 | # Some packages have the version preceeding the .so instead properly |