]> code.ossystems Code Review - openembedded-core.git/commitdiff
autotools.bbclass: There is no need to use the strange -t option to cp anymore
authorRichard Purdie <richard@openedhand.com>
Tue, 6 May 2008 14:18:01 +0000 (14:18 +0000)
committerRichard Purdie <richard@openedhand.com>
Tue, 6 May 2008 14:18:01 +0000 (14:18 +0000)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4442 311d38ba-8fff-0310-9ca6-ca027cbcb966

meta/classes/autotools.bbclass

index 3635361efcc095e1d47b471d596504efb277a13e..4945fe77d5c15ae61a9f07fa8ceaf49d3718c6a6 100644 (file)
@@ -171,7 +171,7 @@ autotools_stage_dir() {
        rmdir "$from" 2> /dev/null || true
        if [ -d "$from" ]; then
                mkdir -p "$to"
-               cp -fpPR -t "$to" "$from"/*
+               cp -fpPR "$from"/* "$to"
        fi
 }