summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2012-01-19 10:13:29 +0100
committerKoen Kooi <koen@dominion.thruhere.net>2012-01-20 12:22:19 +0100
commit3b80f538d9055f54b125d4f663ca147098674cce (patch)
tree2f18551d0b5caed6b05d6f718f74419a87089801 /meta-oe/recipes-devtools
parent1ec5fa073fba7d2c63c15d4625fcd15362769fbf (diff)
downloadmeta-openembedded-3b80f538d9055f54b125d4f663ca147098674cce.tar.gz
python-imaging: fix #!/usr/local/bin/python problem
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe/recipes-devtools')
-rw-r--r--meta-oe/recipes-devtools/python/python-imaging_1.1.7.bb5
1 files changed, 5 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/python/python-imaging_1.1.7.bb b/meta-oe/recipes-devtools/python/python-imaging_1.1.7.bb
index 851c53fe8..c8dd8147c 100644
--- a/meta-oe/recipes-devtools/python/python-imaging_1.1.7.bb
+++ b/meta-oe/recipes-devtools/python/python-imaging_1.1.7.bb
@@ -1,6 +1,8 @@
1DESCRIPTION = "Python Imaging Library" 1DESCRIPTION = "Python Imaging Library"
2SECTION = "devel/python" 2SECTION = "devel/python"
3 3
4PR = "r1"
5
4LICENSE = "BSD" 6LICENSE = "BSD"
5LIC_FILES_CHKSUM = "file://README;beginline=92;endline=117;md5=003338c482e1d2eb2e4d862897f3abbf" 7LIC_FILES_CHKSUM = "file://README;beginline=92;endline=117;md5=003338c482e1d2eb2e4d862897f3abbf"
6 8
@@ -31,6 +33,9 @@ do_install() {
31 install -m 0644 ${S}/README ${D}${datadir}/doc/${PN}/ 33 install -m 0644 ${S}/README ${D}${datadir}/doc/${PN}/
32 install -m 0644 ${S}/Docs/* ${D}${datadir}/doc/${PN}/html/ 34 install -m 0644 ${S}/Docs/* ${D}${datadir}/doc/${PN}/html/
33 35
36 # get rid of #!/usr/local/bin/python
37 sed -i -e 's:/usr/local/bin/:${bindir}/env :g' ${D}${bindir}/*
38
34} 39}
35RDEPENDS_${PN} = "python-lang python-stringold" 40RDEPENDS_${PN} = "python-lang python-stringold"
36 41