summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/lemon
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-devtools/lemon')
-rw-r--r--meta-oe/recipes-devtools/lemon/lemon.inc14
1 files changed, 7 insertions, 7 deletions
diff --git a/meta-oe/recipes-devtools/lemon/lemon.inc b/meta-oe/recipes-devtools/lemon/lemon.inc
index 9a8d3abbd..57b9fb710 100644
--- a/meta-oe/recipes-devtools/lemon/lemon.inc
+++ b/meta-oe/recipes-devtools/lemon/lemon.inc
@@ -9,16 +9,16 @@ SRC_URI = "http://www.sqlite.org/sqlite-${PV}.tar.gz \
9S = "${WORKDIR}/sqlite-${PV}/tool" 9S = "${WORKDIR}/sqlite-${PV}/tool"
10 10
11do_compile() { 11do_compile() {
12 ${CC} ${CFLAGS} lemon.c -c -o lemon.o 12 ${CC} ${CFLAGS} lemon.c -c -o lemon.o
13 ${CCLD} ${LDFLAGS} lemon.o -o lemon 13 ${CCLD} ${LDFLAGS} lemon.o -o lemon
14} 14}
15 15
16do_install() { 16do_install() {
17 install -d ${D}${bindir} 17 install -d ${D}${bindir}
18 install -m 0755 lemon ${D}${bindir} 18 install -m 0755 lemon ${D}${bindir}
19 install -m 0644 lempar.c ${D}${bindir} 19 install -m 0644 lempar.c ${D}${bindir}
20 install -d ${D}${mandir}/man1 20 install -d ${D}${mandir}/man1
21 install -m 0644 ${WORKDIR}/lemon.1 ${D}${mandir}/man1/ 21 install -m 0644 ${WORKDIR}/lemon.1 ${D}${mandir}/man1/
22} 22}
23 23
24BBCLASSEXTEND = "native" 24BBCLASSEXTEND = "native"