diff options
author | Khem Raj <raj.khem@gmail.com> | 2015-06-03 09:42:02 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-08 17:34:03 +0100 |
commit | 673a49a1a363564c27a59ec590e19fc9efe17cfd (patch) | |
tree | 10bfbadf7a6ea2f631c14555c93d50f2d8a01890 | |
parent | 554e25546f057c020e2fb49ca99c1ef7a83d0b7b (diff) | |
download | poky-673a49a1a363564c27a59ec590e19fc9efe17cfd.tar.gz |
lsof: Remove LSOF_OS
This is not needed since its target recipe and we always
need to pass 'linux' for OS
(From OE-Core rev: 4580b59d07af2e0a18eaf0110eae06de1c7969d4)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-extended/lsof/lsof_4.88.bb | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/meta/recipes-extended/lsof/lsof_4.88.bb b/meta/recipes-extended/lsof/lsof_4.88.bb index 0e49f9217c..bc8774f9da 100644 --- a/meta/recipes-extended/lsof/lsof_4.88.bb +++ b/meta/recipes-extended/lsof/lsof_4.88.bb | |||
@@ -29,9 +29,6 @@ python do_unpack () { | |||
29 | d.setVar('SRC_URI', src_uri) | 29 | d.setVar('SRC_URI', src_uri) |
30 | } | 30 | } |
31 | 31 | ||
32 | export LSOF_OS = "${TARGET_OS}" | ||
33 | LSOF_OS_libc-uclibc = "linux" | ||
34 | LSOF_OS_libc-glibc = "linux" | ||
35 | export LSOF_INCLUDE = "${STAGING_INCDIR}" | 32 | export LSOF_INCLUDE = "${STAGING_INCDIR}" |
36 | 33 | ||
37 | do_configure () { | 34 | do_configure () { |
@@ -42,7 +39,7 @@ do_configure () { | |||
42 | LINUX_CLIB="-DGLIBCV=${LINUX_CLIB}" | 39 | LINUX_CLIB="-DGLIBCV=${LINUX_CLIB}" |
43 | export LINUX_CLIB | 40 | export LINUX_CLIB |
44 | fi | 41 | fi |
45 | yes | ./Configure ${LSOF_OS} | 42 | yes | ./Configure linux |
46 | } | 43 | } |
47 | 44 | ||
48 | export I = "${STAGING_INCDIR}" | 45 | export I = "${STAGING_INCDIR}" |