package.bbclass: fix globbing for mask-like files
authorRoman I Khimov <khimov@altell.ru>
Wed, 1 Apr 2009 00:15:28 +0000 (00:15 +0000)
committerKoen Kooi <koen@openembedded.org>
Tue, 21 Apr 2009 20:45:05 +0000 (22:45 +0200)
commit462a9789b27b105282b99185a26e58f7c523647b
tree539e3aae636f56f0ccf9e70f3a9fea172192f12a
parent2c367f622690f191b4ee5f583a9488156a30134f
package.bbclass: fix globbing for mask-like files

When a package contains two files like "name*" and "name*smth" OE can't
properly package those, looping infinetely trying to build file list. The
reason is that first file name globs to two files and OE adds them both
into the list, then globs the first one again and gets two same files, etc.

Fix that.

Signed-off-by: Koen Kooi <koen@openembedded.org>
classes/package.bbclass