aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/mingw
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-10-15 20:06:53 -0700
committerChris Larson <chris_larson@mentor.com>2010-10-21 20:28:50 -0700
commitcaa6067f7faf33200681c75843ce2e059cb1c0b4 (patch)
tree334e6f6ab9b6dea945d192cb73afda3b30dd218f /recipes/mingw
parente84f4995e257e0505fb73432cbd2a9f53cdf074b (diff)
downloadopenembedded-caa6067f7faf33200681c75843ce2e059cb1c0b4.tar.gz
Various fixes for cp argument portability
Diffstat (limited to 'recipes/mingw')
-rw-r--r--recipes/mingw/mingw-runtime-headers.inc2
-rw-r--r--recipes/mingw/mingw-w32api-headers.inc2
2 files changed, 2 insertions, 2 deletions
diff --git a/recipes/mingw/mingw-runtime-headers.inc b/recipes/mingw/mingw-runtime-headers.inc
index 3bc5cd4307..874a5db408 100644
--- a/recipes/mingw/mingw-runtime-headers.inc
+++ b/recipes/mingw/mingw-runtime-headers.inc
@@ -15,5 +15,5 @@ do_install() {
do_stage() {
mkdir -p ${STAGING_INCDIR}
- cp -r ${S}/include/* ${STAGING_INCDIR}/
+ cp -R ${S}/include/* ${STAGING_INCDIR}/
}
diff --git a/recipes/mingw/mingw-w32api-headers.inc b/recipes/mingw/mingw-w32api-headers.inc
index bbd97f9593..fcfb999ed7 100644
--- a/recipes/mingw/mingw-w32api-headers.inc
+++ b/recipes/mingw/mingw-w32api-headers.inc
@@ -15,5 +15,5 @@ do_install() {
do_stage() {
mkdir -p ${STAGING_INCDIR}
- cp -r ${S}/include/* ${STAGING_INCDIR}/
+ cp -R ${S}/include/* ${STAGING_INCDIR}/
}