[oe-commits] : revert last patch as it leads to a build loop. woglinde, please try again.

OE GIT Trial gittrial at amethyst.openembedded.net
Thu Oct 9 07:54:00 UTC 2008


Module: org.openembedded.dev.git
Branch: org.openembedded.dev
Commit: dcd7683e84e4c94169178be3a33d3ec7af23bd61
URL:    http://gitweb.openembedded.net/?p=org.openembedded.dev.git&a=commit;h=dcd7683e84e4c94169178be3a33d3ec7af23bd61

Author:  <mickeyl at openembedded.org>
Date:   Thu Oct  9 07:59:28 2008 +0000

revert last patch as it leads to a build loop. woglinde, please try again.

---

 classes/gettext.bbclass |   11 ++++++-----
 1 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/classes/gettext.bbclass b/classes/gettext.bbclass
index 1c7661d..982d8c8 100644
--- a/classes/gettext.bbclass
+++ b/classes/gettext.bbclass
@@ -1,16 +1,17 @@
-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"
-        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)
+        bb.data.setVar('DEPENDS', oe_filter_out('^(virtual/libiconv|virtual/libintl)$', depends, d), d)
+        bb.data.setVar('EXTRA_OECONF', cfg, d)
 
 python () {
     gettext_after_parse(d)
 }
+
+DEPENDS =+ "gettext-native"
+EXTRA_OECONF += "--enable-nls"
+





More information about the Openembedded-commits mailing list