]> code.ossystems Code Review - openembedded-core.git/commitdiff
base.bbclass: Update to work with systems where install won't overwrite files
authorRichard Purdie <rpurdie@linux.intel.com>
Tue, 19 May 2009 11:09:21 +0000 (12:09 +0100)
committerRichard Purdie <rpurdie@linux.intel.com>
Tue, 19 May 2009 11:09:21 +0000 (12:09 +0100)
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
meta/classes/base.bbclass

index e801fd12a968cbd85ce5de10c92b26401fd30df0..3704cce01a27ef6e0828023b17a3e720aad82059 100644 (file)
@@ -342,6 +342,7 @@ oe_libinstall() {
        __runcmd install -d $destpath/
        dota=$libname.a
        if [ -f "$dota" -o -n "$require_static" ]; then
+               rm -f $destpath/$dota
                __runcmd install -m 0644 $dota $destpath/
        fi
        if [ -f "$dotlai" -a -n "$libtool" ]; then
@@ -355,6 +356,7 @@ oe_libinstall() {
                                     -e "/^dependency_libs=/s,\([[:space:]']\)${libdir},\1${STAGING_LIBDIR},g" \
                                     $dotlai >$destpath/$libname.la
                else
+                       rm -f $destpath/$libname.la
                        __runcmd install -m 0644 $dotlai $destpath/$libname.la
                fi
        fi
@@ -370,6 +372,7 @@ oe_libinstall() {
                                __runcmd cp -P "$f" $destpath/
                        elif [ ! -L "$f" ]; then
                                libfile="$f"
+                               rm -f $destpath/$libfile
                                __runcmd install -m 0755 $libfile $destpath/
                        fi
                done