diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-07-22 21:36:55 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-07-22 21:36:55 +0000 |
commit | da45129f305d554715ffbd04a6e65cd547db7729 (patch) | |
tree | d431870653ded9036b5dd8ab4eab8ca2bfc2abed /classes | |
parent | 68695da69c3e7a2c59fcd2ae02b3e88ab3f5d976 (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages
into r2d2.tm.informatik.uni-frankfurt.de:/home/projekte/packages
2004/07/22 23:36:30+02:00 uni-frankfurt.de!mickey
joe is maintained
2004/07/22 23:33:55+02:00 uni-frankfurt.de!mickey
make opie libraries use opie.oeclass and improve the libopie2 .oe
BKrev: 41003377i0jfO7hplsN7snBvBOPkDw
Diffstat (limited to 'classes')
-rw-r--r-- | classes/opie.oeclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/classes/opie.oeclass b/classes/opie.oeclass index f5327fd83b..cc94de0342 100644 --- a/classes/opie.oeclass +++ b/classes/opie.oeclass @@ -29,8 +29,8 @@ python opie_do_opie_install() { import os, shutil section = oe.data.getVar( "SECTION", d ).split( '/' )[1] or "Applications" section = section.title() - if section == "Base": - oe.note( "Section = Base --> target won't be installed automatically." ) + if section in ( "Base", "Libs" ): + oe.note( "Section = Base or Libs. Target won't be installed automatically." ) return # SECTION : BINDIR DESKTOPDIR |