aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/openssl/openssl.inc
diff options
context:
space:
mode:
authorGraham Gower <graham.gower@gmail.com>2010-12-01 13:48:11 +1030
committerStefan Schmidt <stefan@buglabs.net>2010-12-02 16:47:19 +0100
commita5464f8e1febb8f17aa2eb1ecc66f922e0b0dd9c (patch)
tree61e21255fa32ba055f29d3ccea4d2f8ab85babc8 /recipes/openssl/openssl.inc
parenta6fa89dedf706d3d2eb6692db18cd0c35528d357 (diff)
downloadopenembedded-a5464f8e1febb8f17aa2eb1ecc66f922e0b0dd9c.tar.gz
openssl.inc: Use cp -L, busybox cp doesn't support the long option.
Reported by andyzammy on IRC. | oe_libinstall: cd /home/rofl/Desktop/oe/angstrom-setup-scripts/build/tmp-angstrom_2008_1/work/i686-linux/openssl-native-1.0.0b-r13.1/openssl-1.0.0b | cp: unrecognized option '--dereference' | BusyBox v1.13.3 (Ubuntu 1:1.13.3-1ubuntu11) multi-call binary | | Usage: cp [OPTION]... SOURCE DEST | | Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY | | Options: | -a Same as -dpR | -d,-P Preserve links | -H,-L Dereference all symlinks (default) | -p Preserve file attributes if possible | -f Force overwrite | -i Prompt before overwrite | -R,-r Recurse directories | -l,-s Create (sym)links | | ERROR: Function do_install failed Signed-off-by: Graham Gower <graham.gower@gmail.com> Acked-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'recipes/openssl/openssl.inc')
-rw-r--r--recipes/openssl/openssl.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/openssl/openssl.inc b/recipes/openssl/openssl.inc
index 3091b4ecfc..bcebc4afbb 100644
--- a/recipes/openssl/openssl.inc
+++ b/recipes/openssl/openssl.inc
@@ -122,5 +122,5 @@ do_install () {
oe_libinstall -so libssl ${D}${libdir}
install -d ${D}${includedir}
- cp --dereference -R include/openssl ${D}${includedir}
+ cp -L -R include/openssl ${D}${includedir}
}