diff options
author | Tomas Frydrych <tomas@sleepfive.com> | 2013-05-21 16:08:40 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-24 14:14:44 +0100 |
commit | 32b4a4abd9437db81b0ea70a820b202d40b779e7 (patch) | |
tree | 30360b80253435da85f2e6b7a3ef19932274d8ac | |
parent | 7c178fc360a7d94e34027afb8dafdfb54cb7de64 (diff) | |
download | poky-32b4a4abd9437db81b0ea70a820b202d40b779e7.tar.gz |
clutter.bbclass: removed unused function
Clutter and cogl no longer use --with-fpu configure option, so we no longer
require the get_fpu_settings() function.
(From OE-Core rev: ea59330c48cdb7d7106deea3f19c043ba60c23e4)
Signed-off-by: Tomas Frydrych <tomas@sleepfive.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/clutter.bbclass | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/meta/classes/clutter.bbclass b/meta/classes/clutter.bbclass index 184fb44777..0dc485053b 100644 --- a/meta/classes/clutter.bbclass +++ b/meta/classes/clutter.bbclass | |||
@@ -13,11 +13,6 @@ VERMINOR = "${@get_minor_dir("${PV}")}" | |||
13 | REALNAME = "${@get_real_name("${BPN}")}" | 13 | REALNAME = "${@get_real_name("${BPN}")}" |
14 | FILESPATH = "${@base_set_filespath(["${FILE_DIRNAME}/${REALNAME}-${PV}", "${FILE_DIRNAME}/${REALNAME}-${VERMINOR}", "${FILE_DIRNAME}/${REALNAME}", "${FILE_DIRNAME}/files"], d)}" | 14 | FILESPATH = "${@base_set_filespath(["${FILE_DIRNAME}/${REALNAME}-${PV}", "${FILE_DIRNAME}/${REALNAME}-${VERMINOR}", "${FILE_DIRNAME}/${REALNAME}", "${FILE_DIRNAME}/files"], d)}" |
15 | 15 | ||
16 | def get_fpu_setting(bb, d): | ||
17 | if d.getVar('TARGET_FPU', True) in [ 'soft' ]: | ||
18 | return "--without-fpu" | ||
19 | return "" | ||
20 | |||
21 | CLUTTER_SRC_FTP = "${GNOME_MIRROR}/${REALNAME}/${VERMINOR}/${REALNAME}-${PV}.tar.xz;name=archive" | 16 | CLUTTER_SRC_FTP = "${GNOME_MIRROR}/${REALNAME}/${VERMINOR}/${REALNAME}-${PV}.tar.xz;name=archive" |
22 | 17 | ||
23 | CLUTTER_SRC_GIT = "git://git.gnome.org/${REALNAME};protocol=git" | 18 | CLUTTER_SRC_GIT = "git://git.gnome.org/${REALNAME};protocol=git" |