From: Richard Purdie Date: Tue, 6 May 2008 14:18:01 +0000 (+0000) Subject: autotools.bbclass: There is no need to use the strange -t option to cp anymore X-Git-Tag: 2011-1~9029 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=be886a8b1b09dfbc43cc9039fe8f448a1fe5e284;p=openembedded-core.git autotools.bbclass: There is no need to use the strange -t option to cp anymore git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4442 311d38ba-8fff-0310-9ca6-ca027cbcb966 --- diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass index 3635361efc..4945fe77d5 100644 --- a/meta/classes/autotools.bbclass +++ b/meta/classes/autotools.bbclass @@ -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 }