From: Richard Purdie Date: Tue, 6 May 2008 14:19:43 +0000 (+0000) Subject: autotools.bbclass: Remove -t option from cp, there is no longer any need for it ... X-Git-Tag: Release-2010-05/1~7014^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b56392e07065927ba44f01c7c631fd2829ba050d;p=openembedded.git autotools.bbclass: Remove -t option from cp, there is no longer any need for it (closes #4210) --- diff --git a/classes/autotools.bbclass b/classes/autotools.bbclass index 9d741408f4..5b921dce5d 100644 --- a/classes/autotools.bbclass +++ b/classes/autotools.bbclass @@ -172,7 +172,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 }