diff options
author | Holger Schurig <schurig@mn-solutions.de> | 2005-04-04 10:17:24 +0000 |
---|---|---|
committer | Holger Schurig <schurig@mn-solutions.de> | 2005-04-04 10:17:24 +0000 |
commit | 88bb5bdf8212c42e2cc7f3f80c51af92f64bfba8 (patch) | |
tree | e16b2fca1cefec766f318ee7f81bbb1c63d3c601 /classes | |
parent | 47c19c5daee6d57fc0b89942a30675ff9d438a83 (diff) |
classes/base.bbclass: change -P to --no-dereference
BKrev: 42511434NzFFVX5XAaDTUTftcu6f2Q
Diffstat (limited to 'classes')
-rw-r--r-- | classes/base.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/base.bbclass b/classes/base.bbclass index 52a4dd37e2..bc2e853270 100644 --- a/classes/base.bbclass +++ b/classes/base.bbclass @@ -199,7 +199,7 @@ oe_libinstall() { oefatal "oe_libinstall: $dir/$f not found." fi elif [ -L "$f" ]; then - __runcmd cp -P "$f" $destpath/ + __runcmd cp --no-dereference "$f" $destpath/ elif [ ! -L "$f" ]; then libfile="$f" __runcmd install -m 0755 $libfile $destpath/ |