aboutsummaryrefslogtreecommitdiffstats
path: root/packages/qte
diff options
context:
space:
mode:
authorHolger Freyther <zecke@selfish.org>2005-09-19 12:29:59 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-09-19 12:29:59 +0000
commit57c3acf775eeb9f8a2613c3752688d7816f2b0a4 (patch)
treee146788bde63677bbc22b17d8c476eced456adf8 /packages/qte
parent06926d0f7b737204ff8f31d8551d72e223ce4a78 (diff)
downloadopenembedded-57c3acf775eeb9f8a2613c3752688d7816f2b0a4.tar.gz
GNU cp has a nice -a switch, sadly the BSD tools lack it
update our descriptions to work with any version of cp. Patches that include cp -a are not changed. They seem to work and I'm too scared busybox cp is more like GNU cp than BSD cp. (e.g do not know about P)
Diffstat (limited to 'packages/qte')
-rw-r--r--packages/qte/qte_2.3.10.bb2
-rw-r--r--packages/qte/qte_4.0.0-snapshot.bb6
2 files changed, 4 insertions, 4 deletions
diff --git a/packages/qte/qte_2.3.10.bb b/packages/qte/qte_2.3.10.bb
index b94c030aa2..51f94e2c7c 100644
--- a/packages/qte/qte_2.3.10.bb
+++ b/packages/qte/qte_2.3.10.bb
@@ -147,7 +147,7 @@ do_stage() {
rm -f include/qxt.h
install -d ${STAGING_DIR}/${HOST_SYS}/qt2/include
cp -pfLR include/* ${STAGING_DIR}/${HOST_SYS}/qt2/include
- cp -a lib/fonts ${STAGING_DIR}/${HOST_SYS}/qt2/lib/
+ cp -pPR lib/fonts ${STAGING_DIR}/${HOST_SYS}/qt2/lib/
}
do_install() {
diff --git a/packages/qte/qte_4.0.0-snapshot.bb b/packages/qte/qte_4.0.0-snapshot.bb
index 09ee610484..9b98f7f4b1 100644
--- a/packages/qte/qte_4.0.0-snapshot.bb
+++ b/packages/qte/qte_4.0.0-snapshot.bb
@@ -105,11 +105,11 @@ do_stage() {
for lib in Core Gui Network Sql Xml
do
- cp -a lib/libQt${lib}* ${STAGING_DIR}/${HOST_SYS}/qt4/lib/
+ cp -pPR lib/libQt${lib}* ${STAGING_DIR}/${HOST_SYS}/qt4/lib/
done
install -d ${STAGING_DIR}/${HOST_SYS}/qt4/include/
- cp -a include/* ${STAGING_DIR}/${HOST_SYS}/qt4/include
+ cp -pPR include/* ${STAGING_DIR}/${HOST_SYS}/qt4/include
}
do_install() {
@@ -117,7 +117,7 @@ do_install() {
install -d ${D}${sbindir}/
install -m 0755 ${WORKDIR}/update-qtfontdir ${D}${sbindir}/
install -d ${D}${palmtopdir}/lib/fonts/
- cp -a lib/fonts/* ${D}${palmtopdir}/lib/fonts/
+ cp -pPR lib/fonts/* ${D}${palmtopdir}/lib/fonts/
for lib in Core Gui Network Sql Xml
do