mirror of
https://git.yoctoproject.org/poky
synced 2026-04-21 21:32:12 +02:00
oe/classes updates from Openembedded
git-svn-id: https://svn.o-hand.com/repos/poky@187 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
@@ -124,6 +124,7 @@ oe_libinstall() {
|
||||
silent=""
|
||||
require_static=""
|
||||
require_shared=""
|
||||
staging_install=""
|
||||
while [ "$#" -gt 0 ]; do
|
||||
case "$1" in
|
||||
-C)
|
||||
@@ -155,6 +156,10 @@ oe_libinstall() {
|
||||
if [ -z "$destpath" ]; then
|
||||
oefatal "oe_libinstall: no destination path specified"
|
||||
fi
|
||||
if echo "$destpath/" | egrep '^${STAGING_LIBDIR}/' >/dev/null
|
||||
then
|
||||
staging_install=1
|
||||
fi
|
||||
|
||||
__runcmd () {
|
||||
if [ -z "$silent" ]; then
|
||||
@@ -188,7 +193,15 @@ oe_libinstall() {
|
||||
fi
|
||||
dotlai=$libname.lai
|
||||
if [ -f "$dotlai" -a -n "$libtool" ]; then
|
||||
__runcmd install -m 0644 $dotlai $destpath/$libname.la
|
||||
if test -n "$staging_install"
|
||||
then
|
||||
# stop libtool using the final directory name for libraries
|
||||
# in staging:
|
||||
__runcmd rm -f $destpath/$libname.la
|
||||
__runcmd sed -e 's/^installed=yes$/installed=no/' $dotlai >$destpath/$libname.la
|
||||
else
|
||||
__runcmd install -m 0644 $dotlai $destpath/$libname.la
|
||||
fi
|
||||
fi
|
||||
|
||||
for name in $library_names; do
|
||||
|
||||
Reference in New Issue
Block a user