diff options
-rw-r--r-- | meta/classes/base.bbclass | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 6b0e50bd6a..34f9c181c4 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -297,7 +297,16 @@ oe_libinstall() { | |||
297 | if [ -z "$dir" ]; then | 297 | if [ -z "$dir" ]; then |
298 | dir=`pwd` | 298 | dir=`pwd` |
299 | fi | 299 | fi |
300 | |||
300 | dotlai=$libname.lai | 301 | dotlai=$libname.lai |
302 | |||
303 | # Sanity check that the libname.lai is unique | ||
304 | number_of_files=`(cd $dir; find . -name "$dotlai") | wc -l` | ||
305 | if [ $number_of_files -gt 1 ]; then | ||
306 | oefatal "oe_libinstall: $dotlai is not unique in $dir" | ||
307 | fi | ||
308 | |||
309 | |||
301 | dir=$dir`(cd $dir;find . -name "$dotlai") | sed "s/^\.//;s/\/$dotlai\$//;q"` | 310 | dir=$dir`(cd $dir;find . -name "$dotlai") | sed "s/^\.//;s/\/$dotlai\$//;q"` |
302 | olddir=`pwd` | 311 | olddir=`pwd` |
303 | __runcmd cd $dir | 312 | __runcmd cd $dir |