diff options
author | Henning Heinold <heinold@inf.fu-berlin.de> | 2008-10-08 22:06:39 +0000 |
---|---|---|
committer | Henning Heinold <heinold@inf.fu-berlin.de> | 2008-10-08 22:06:39 +0000 |
commit | 2a82625e1b63d1eb33b37fea6c96b14e02549708 (patch) | |
tree | ffddf3cf2155695cad3c85d4448a7ca29c42d98c /classes/gettext.bbclass | |
parent | d0748d3a527ff7ec4f2275487af54e2671ace421 (diff) |
gettext.bbclass: make it simpler to understand
* set the deps for package which can use NLS stuff
* filter the deps out if NLS is not requested
Diffstat (limited to 'classes/gettext.bbclass')
-rw-r--r-- | classes/gettext.bbclass | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/classes/gettext.bbclass b/classes/gettext.bbclass index a1e00e72c1..1c7661ddb9 100644 --- a/classes/gettext.bbclass +++ b/classes/gettext.bbclass @@ -1,16 +1,16 @@ +DEPENDS =+ "gettext-native virtual/libiconv virtual/libintl" +EXTRA_OECONF += "--enable-nls" + def gettext_after_parse(d): import bb # Remove the NLS bits if USE_NLS is no. if bb.data.getVar('USE_NLS', d, 1) == 'no': cfg = oe_filter_out('^--(dis|en)able-nls$', bb.data.getVar('EXTRA_OECONF', d, 1) or "", d) cfg += " --disable-nls" - depends = bb.data.getVar('DEPENDS', d, 1) or "" - bb.data.setVar('DEPENDS', oe_filter_out('^(virtual/libiconv|virtual/libintl)$', depends, d), d) bb.data.setVar('EXTRA_OECONF', cfg, d) + depends = bb.data.getVar('DEPENDS', d, 1) or "" + bb.data.setVar('DEPENDS', oe_filter_out('^(gettext-native|virtual/libiconv|virtual/libintl)$', depends, d), d) python () { gettext_after_parse(d) } - -DEPENDS =+ "gettext-native" -EXTRA_OECONF += "--enable-nls" |