diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-03-30 17:57:47 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-03-30 17:57:47 +0000 |
commit | c7ffbb1b03a9d1aa55f45a6eb25b1d12bcf50dbe (patch) | |
tree | ccb79f8dd271e99ce59cacb66919434e06aadea3 /qte | |
parent | 3c42de300e1e00b066c679fe2cf93a11cbc9505a (diff) |
append exactly one '/' after ${palmtopdir}, not zero, not two and not even more than two
BKrev: 4069b51bi0pkDQWoVJdPxCUNQKlZOw
Diffstat (limited to 'qte')
-rw-r--r-- | qte/qte_2.3.7.oe | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/qte/qte_2.3.7.oe b/qte/qte_2.3.7.oe index 6d52a29547..99a01637cb 100644 --- a/qte/qte_2.3.7.oe +++ b/qte/qte_2.3.7.oe @@ -60,13 +60,13 @@ do_stage() { } do_install() { - install -d ${D}${palmtopdir}lib/fonts - oe_soinstall lib/libqte.so.${PV} ${D}${palmtopdir}lib - cp -a lib/fonts/* ${D}${palmtopdir}lib/fonts/ + install -d ${D}${palmtopdir}/lib/fonts + oe_soinstall lib/libqte.so.${PV} ${D}${palmtopdir}/lib + cp -a lib/fonts/* ${D}${palmtopdir}/lib/fonts/ } PACKAGES = "libqte2 qte-fonts" FILES_${PN} = "" -FILES_libqte2 = "${palmtopdir}lib/libqte.so*" -FILES_qte-fonts = "${palmtopdir}lib/fonts" +FILES_libqte2 = "${palmtopdir}/lib/libqte.so*" +FILES_qte-fonts = "${palmtopdir}/lib/fonts" |