summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-06-07 21:58:21 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2010-06-07 21:58:21 +0100
commit6118da2a7f91979d14fda968805a8c69f0de42e4 (patch)
tree986bf80d910334fc61e9cc41c881b4b76d6c089c /meta
parent2160dddcc14d9378aff5d48ee72e3dc39b4ab8c7 (diff)
downloadpoky-6118da2a7f91979d14fda968805a8c69f0de42e4.tar.gz
syslinux: Fix native install to use the correct paths
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta')
-rw-r--r--meta/packages/syslinux/syslinux_3.36.bb7
1 files changed, 6 insertions, 1 deletions
diff --git a/meta/packages/syslinux/syslinux_3.36.bb b/meta/packages/syslinux/syslinux_3.36.bb
index 5073ac358a..9cd24e6bd9 100644
--- a/meta/packages/syslinux/syslinux_3.36.bb
+++ b/meta/packages/syslinux/syslinux_3.36.bb
@@ -2,7 +2,7 @@ DESCRIPTION = "A multi-purpose linux bootloader"
2HOMEPAGE = "http://syslinux.zytor.com/" 2HOMEPAGE = "http://syslinux.zytor.com/"
3LICENSE = "GPL" 3LICENSE = "GPL"
4SRC_URI = "${KERNELORG_MIRROR}/pub/linux/utils/boot/syslinux/syslinux-${PV}.tar.bz2" 4SRC_URI = "${KERNELORG_MIRROR}/pub/linux/utils/boot/syslinux/syslinux-${PV}.tar.bz2"
5PR = "r3" 5PR = "r4"
6 6
7# If you really want to run syslinux, you need mtools. We just want the 7# If you really want to run syslinux, you need mtools. We just want the
8# ldlinux.* stuff for now, so skip mtools-native 8# ldlinux.* stuff for now, so skip mtools-native
@@ -14,6 +14,11 @@ do_configure() {
14 14
15COMPATIBLE_HOST = '(x86_64|i.86.*)-(linux|freebsd.*)' 15COMPATIBLE_HOST = '(x86_64|i.86.*)-(linux|freebsd.*)'
16 16
17export BINDIR = "${bindir}"
18export SBINDIR = "${sbindir}"
19export LIBDIR = "${libdir}"
20export INCDIR = "${includedir}"
21
17do_compile_virtclass-native () { 22do_compile_virtclass-native () {
18 oe_runmake installer 23 oe_runmake installer
19} 24}