diff options
Diffstat (limited to 'comprec/comprec_0.02.oe')
-rw-r--r-- | comprec/comprec_0.02.oe | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/comprec/comprec_0.02.oe b/comprec/comprec_0.02.oe index 7fee0b4363..3b1c485e7a 100644 --- a/comprec/comprec_0.02.oe +++ b/comprec/comprec_0.02.oe @@ -5,10 +5,10 @@ PRIORITY = "optional" LICENSE = "GPL" DEPENDS = "virtual/libc" -SRC_URI = http://unimut.fsk.uni-heidelberg.de/demi/comprec/comprec-${PV}.tar.gz \ - file://${FILESDIR}/makefile.patch;patch=1 +SRC_URI = "http://unimut.fsk.uni-heidelberg.de/demi/comprec/comprec-${PV}.tar.gz \ + file://${FILESDIR}/makefile.patch;patch=1" -export AS="${TARGET_PREFIX}as" +export AS = "${TARGET_PREFIX}as" do_compile() { oe_runmake @@ -16,5 +16,5 @@ do_compile() { do_install() { install -d ${D}/${bindir} - cp shine ${D}/${bindir}/shine + install -m 0755 shine ${D}/${bindir}/shine } |